/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: Szilveszter Farkas (Phanatic)
  • Date: 2007-04-07 07:43:25 UTC
  • mfrom: (188.1.4 bzr-gtk.90839)
  • mto: This revision was merged to the branch mainline in revision 190.
  • Revision ID: szilveszter.farkas@gmail.com-20070407074325-a8q9g9tv012elgqu
Merged fix for #90839. Initialize dialog implemented.

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: