Skip to content

Commit

Permalink
core: disable dummy backend when doing stable releases (version does …
Browse files Browse the repository at this point in the history
…not contain -dev)
  • Loading branch information
c10ud committed Sep 6, 2012
1 parent 290f323 commit 61e552b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion emesene/emesene.py
Expand Up @@ -182,7 +182,8 @@ def _setup(self):
'''register core extensions'''
extension.category_register('session', dummy.Session,
single_instance=True)
extension.register('session', dummy.Session)
if Info.EMESENE_VERSION.endswith("dev"):
extension.register('session', dummy.Session)

if webqq is not None:
extension.register('session', webqq.Session)
Expand Down

0 comments on commit 61e552b

Please sign in to comment.