/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-04-07 14:57:59 UTC
  • mfrom: (188.2.2 trunk)
  • Revision ID: jelmer@samba.org-20070407145759-qn5j38wdy216qynm
MergeĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
419
419
            local_branch.unlock()
420
420
 
421
421
 
 
422
class cmd_ginit(GTKCommand):
 
423
    def run(self):
 
424
        self.open_display()
 
425
        from initialize import InitDialog
 
426
        dialog = InitDialog(os.path.abspath(os.path.curdir))
 
427
        dialog.run()
 
428
 
 
429
 
422
430
commands = [
423
431
    cmd_gmissing, 
424
432
    cmd_gpreferences, 
430
438
    cmd_gdiff,
431
439
    cmd_gpush, 
432
440
    cmd_gcheckout, 
433
 
    cmd_gbranch 
 
441
    cmd_gbranch,
 
442
    cmd_ginit
434
443
    ]
435
444
 
436
445
for cmd in commands: