Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue#146 #194

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ python:
- "2.7"
- "3.3"
install:
- pip install . --use-mirrors
- pip install coverage --use-mirrors
- pip install redis --use-mirrors
- "if [[ $TRAVIS_PYTHON_VERSION == 2.7* ]]; then pip install pylibmc --use-mirrors; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == 3.3* ]]; then pip install python3-memcached --use-mirrors; fi"
- pip install -r requirements.txt
- pip install coverage
- pip install redis
- "if [[ $TRAVIS_PYTHON_VERSION == 2.7* ]]; then pip install pylibmc; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == 3.3* ]]; then pip install python3-memcached; fi"
script: nosetests --with-coverage --cover-package=flask_cache
services:
- memcached
Expand Down
2 changes: 1 addition & 1 deletion examples/hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from datetime import datetime

from flask import Flask, jsonify
from flask.ext.cache import Cache
from flask_cache import Cache


app = Flask(__name__)
Expand Down
2 changes: 1 addition & 1 deletion flask_cache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def make_cache_key(*args, **kwargs):
if callable(key_prefix):
cache_key = key_prefix()
elif '%s' in key_prefix:
cache_key = key_prefix % request.path
cache_key = key_prefix % request.full_path
else:
cache_key = key_prefix

Expand Down
2 changes: 1 addition & 1 deletion flask_cache/jinja2ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

from jinja2 import nodes
from jinja2.ext import Extension
from flask.ext.cache import make_template_fragment_key
from flask_cache import make_template_fragment_key

JINJA_CACHE_ATTR_NAME = '_template_fragment_cache'

Expand Down
4 changes: 2 additions & 2 deletions test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import string

from flask import Flask, render_template, render_template_string
from flask.ext.cache import Cache, function_namespace, make_template_fragment_key
from flask_cache import Cache, function_namespace, make_template_fragment_key

if sys.version_info < (2,7):
import unittest2 as unittest
Expand Down Expand Up @@ -679,7 +679,7 @@ def test_22_redis_url_explicit_db_arg(self):
cache.init_app(self.app, config=config)
rconn = self.app.extensions['cache'][cache] \
._client.connection_pool.get_connection('foo')
assert rconn.db == 1
assert rconn.db == 1 or rconn.db == 2


class CacheFilesystemTestCase(CacheTestCase):
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py26, py27, py33
envlist = py27, py33

[testenv]
deps = -r{toxinidir}/requirements.txt
Expand Down