/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 __init__.py

Merge the fix for #113394.

Show diffs side-by-side

added added

removed removed

Lines of Context:
323
323
        try:
324
324
            (wt, path) = workingtree.WorkingTree.open_containing(filename)
325
325
            br = wt.branch
326
 
        except NotBranchError, e:
327
 
            path = e.path
328
326
        except NoWorkingTree, e:
329
327
            path = e.base
330
 
            try:
331
 
                (br, path) = branch.Branch.open_containing(path)
332
 
            except NotBranchError, e:
333
 
                path = e.path
 
328
            (br, path) = branch.Branch.open_containing(path)
334
329
 
335
330
        commit = CommitDialog(wt, path, not br)
336
331
        commit.run()