/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/commit.py

  • Committer: Jelmer Vernooij
  • Date: 2006-09-27 17:40:05 UTC
  • mto: (0.12.2 olive)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060927174005-5dfa27de4081ed19
Handle non-bzr unknown errors as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
                                     _('%s') % errmsg)
175
175
            return
176
176
        except errors.BzrError, msg:
 
177
            error_dialog(_('Unknown bzr error'), str(msg))
 
178
            return
 
179
        except Exception, msg:
177
180
            error_dialog(_('Unknown error'), str(msg))
178
181
            return
179
182