/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:29:17 UTC
  • mto: (0.12.2 olive)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060927172917-caa70a1f6f844310
Handle unknown errors in commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
            self.dialog.error_dialog(_('Bound branch is out of date'),
175
175
                                     _('%s') % errmsg)
176
176
            return
177
 
        except:
178
 
            raise
 
177
        except errors.BzrError, msg:
 
178
            self.dialog.error_dialog(_('Unknown error'), str(msg))
 
179
            return
179
180
        
180
181
        self.close()
181
182
        self.comm.refresh_right()