Skip to content

Commit a63a2de

Browse files
author
Patrick Lauber
committed
beta2
1 parent 83ed7cc commit a63a2de

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

cms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (2, 1, 0, 'alpha')
1+
VERSION = (2, 1, 0, 'beta2')
22
if VERSION[-1] != "final":
33
__version__ = '.'.join(map(str, VERSION))
44
else:

cms/apphook_pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ def get_apphook(self, app_name):
5555
for app in self.apps.values():
5656
if app_name in app.urls:
5757
return app
58-
raise ImproperlyConfigured('No registered apphook `%s` found.')
58+
raise ImproperlyConfigured('No registered apphook `%s` found.' % app_name)
5959

6060
apphook_pool = ApphookPool()

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,15 @@
5353
'plugins/*/templates/cms/plugins/*.html',
5454
'plugins/*/templates/cms/plugins/*/*.html',
5555
'plugins/*/templates/cms/plugins/*/*.js',
56-
'locale/*/LC_MESSAGES/*'
56+
'locale/*/LC_MESSAGES/*',
57+
'docs/*.txt'
5758
] + media_files,
5859
'example': [
60+
'media/css/*.css',
61+
'media/img/*.jpg',
5962
'templates/*.html',
60-
'store/templates/store/plugins/*.html',
6163
'sampleapp/media/sampleapp/img/gift.jpg',
6264
'sampleapp/templates/sampleapp/*.html',
63-
'categories/templates/categories/*.html',
6465
],
6566
'menus': [
6667
'templates/menu/*.html',

0 commit comments

Comments
 (0)