Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/journalactivity.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jarabe/journal/journalactivity.py')
-rw-r--r--src/jarabe/journal/journalactivity.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/jarabe/journal/journalactivity.py b/src/jarabe/journal/journalactivity.py
index 4f4d320..4ca751c 100644
--- a/src/jarabe/journal/journalactivity.py
+++ b/src/jarabe/journal/journalactivity.py
@@ -277,12 +277,13 @@ class JournalActivity(Window):
return
if registry.is_installed(bundle):
+ logging.debug('_check_for_bundle bundle already installed')
return
try:
registry.install(bundle)
- except (ZipExtractException, RegistrationException), e:
- logging.warning('Could not install bundle %s: %r' %
- (bundle.get_path(), e))
+ except (ZipExtractException, RegistrationException):
+ logging.warning('Could not install bundle %s:\n%s' % \
+ (bundle.get_path(), traceback.format_exc()))
return
if metadata['mime_type'] == JournalEntryBundle.MIME_TYPE: