/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

  • Committer: Jelmer Vernooij
  • Date: 2007-03-20 21:08:58 UTC
  • Revision ID: jelmer@samba.org-20070320210858-dj3gawaadvje001l
RemoveĀ unneededĀ imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
335
335
 
336
336
        set_ui_factory()
337
337
        from commit import CommitDialog
338
 
        from bzrlib.commit import Commit
339
338
        from bzrlib.errors import (BzrCommandError,
340
339
                                   NotBranchError,
341
 
                                   NoWorkingTree,
342
 
                                   PointlessCommit,
343
 
                                   ConflictsInTree,
344
 
                                   StrictCommitFailed)
 
340
                                   NoWorkingTree)
345
341
 
346
342
        wt = None
347
343
        br = None
357
353
            except NotBranchError, e:
358
354
                path = e.path
359
355
 
360
 
 
361
356
        commit = CommitDialog(wt, path, not br)
362
357
        commit.run()
363
358