bzr 1.12 lost progress bar?

Martin Pool mbp at sourcefrog.net
Thu Mar 5 08:35:50 GMT 2009


2009/2/26 Matt Doran <matt.doran at papercut.com>:
> Done!  https://bugs.launchpad.net/bugs/334808

I was hoping to look at this, but I haven't got around to it yet.
Could someone who commonly runs Windows maybe poke into it, and I will
help you with a patch or with getting it merged for 1.13?

Actually I think this will do it, if someone could test it:

=== modified file 'bzrlib/ui/__init__.py'
--- bzrlib/ui/__init__.py	2009-02-23 15:42:47 +0000
+++ bzrlib/ui/__init__.py	2009-03-05 08:34:08 +0000
@@ -237,7 +237,8 @@
     cls = None
     isatty = getattr(stdin, 'isatty', None)
     if isatty is None:
-        cls = CLIUIFactory
+        # probably Windows, etc
+        cls = TextUIFactory
     elif not isatty():
         cls = CLIUIFactory
     elif os.environ.get('TERM') in (None, 'dumb', ''):


-- 
Martin <http://launchpad.net/~mbp/>



More information about the bazaar mailing list