diff hg @ 207:ec327cf0d3a9

Move ui class to its own module -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Move ui class to its own module manifest hash: f75c8f9cdfe16f143ab633d0072c14ba88ac88be -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCnVxxywK+sNU5EO8RAgPgAJ48p7w4Do/saCC8WkBvHj/rdnoiEgCgrSs9 Wu1fOSgST3rn/2JpZAdFRdA= =91tt -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 31 May 2005 22:57:53 -0800
parents 3295b6b508de
children 63af1db35611
line wrap: on
line diff
--- a/hg	Tue May 31 22:45:50 2005 -0800
+++ b/hg	Tue May 31 22:57:53 2005 -0800
@@ -17,7 +17,7 @@
 #    pass
 
 import sys, os, time
-from mercurial import hg, mdiff, fancyopts
+from mercurial import hg, mdiff, fancyopts, ui
 
 def help():
     ui.status("""\
@@ -109,7 +109,7 @@
 except:
     cmd = "help"
 
-ui = hg.ui(options["verbose"], options["debug"], options["quiet"],
+ui = ui.ui(options["verbose"], options["debug"], options["quiet"],
            not options["noninteractive"])
     
 if cmd == "init":