Skip to content

Commit

Permalink
beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lauber committed Mar 23, 2010
1 parent 83ed7cc commit a63a2de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cms/__init__.py
@@ -1,4 +1,4 @@
VERSION = (2, 1, 0, 'alpha')
VERSION = (2, 1, 0, 'beta2')
if VERSION[-1] != "final":
__version__ = '.'.join(map(str, VERSION))
else:
Expand Down
2 changes: 1 addition & 1 deletion cms/apphook_pool.py
Expand Up @@ -55,6 +55,6 @@ def get_apphook(self, app_name):
for app in self.apps.values():
if app_name in app.urls:
return app
raise ImproperlyConfigured('No registered apphook `%s` found.')
raise ImproperlyConfigured('No registered apphook `%s` found.' % app_name)

apphook_pool = ApphookPool()
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -53,14 +53,15 @@
'plugins/*/templates/cms/plugins/*.html',
'plugins/*/templates/cms/plugins/*/*.html',
'plugins/*/templates/cms/plugins/*/*.js',
'locale/*/LC_MESSAGES/*'
'locale/*/LC_MESSAGES/*',
'docs/*.txt'
] + media_files,
'example': [
'media/css/*.css',
'media/img/*.jpg',
'templates/*.html',
'store/templates/store/plugins/*.html',
'sampleapp/media/sampleapp/img/gift.jpg',
'sampleapp/templates/sampleapp/*.html',
'categories/templates/categories/*.html',
],
'menus': [
'templates/menu/*.html',
Expand Down

0 comments on commit a63a2de

Please sign in to comment.