diff --git a/dbtemplates/__init__.py b/dbtemplates/__init__.py index 50e3314..d7ecfb2 100644 --- a/dbtemplates/__init__.py +++ b/dbtemplates/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 5, 7) +VERSION = (0, 5, 8) __version__ = '.'.join(map(str, VERSION)) \ No newline at end of file diff --git a/dbtemplates/cache.py b/dbtemplates/cache.py index b407a98..43b6a21 100644 --- a/dbtemplates/cache.py +++ b/dbtemplates/cache.py @@ -83,7 +83,7 @@ class FileSystemBackend(BaseCacheBackend): filepath = self._filepath(name) dirname = os.path.dirname(filepath) if not os.path.exists(dirname): - os.makedirs(dirname) + os.makedirs(dirname) cache_file = open(filepath, 'w') cache_file.write(force_unicode(content).encode('utf-8')) cache_file.close() diff --git a/setup.py b/setup.py index 4471391..4d41123 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ setup( long_description=open('docs/overview.txt').read(), author='Jannis Leidel', author_email='jannis@leidel.info', - url='http://bitbucket.org/jezdez/django-dbtemplates/wiki/Home', + url='http://bitbucket.org/jezdez/django-dbtemplates/', download_url='http://bitbucket.org/jezdez/django-dbtemplates/downloads/', - packages=find_packages(), + packages=find_packages(exclude=['example']), zip_safe=False, package_data = { 'dbtemplates': [