diff hgsubversion/utility_commands.py @ 576:d96aa92d9ad9

tests: silence test suite by using quiet UIs everywhere
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Fri, 26 Feb 2010 14:50:22 +0100
parents 00393e9abff8
children
line wrap: on
line diff
--- a/hgsubversion/utility_commands.py
+++ b/hgsubversion/utility_commands.py
@@ -77,7 +77,7 @@ def info(ui, repo, **opts):
     author = meta.authors.reverselookup(parent.user())
     # cleverly figure out repo root w/o actually contacting the server
     reporoot = url[:len(url)-len(subdir)]
-    ui.status('''URL: %(url)s
+    ui.write('''URL: %(url)s
 Repository Root: %(reporoot)s
 Repository UUID: %(uuid)s
 Revision: %(revision)s
@@ -111,7 +111,7 @@ def listauthors(ui, args, authors=None, 
         authorfile.write('%s=\n' % '=\n'.join(sorted(author_set)))
         authorfile.close()
     else:
-        ui.status('%s\n' % '\n'.join(sorted(author_set)))
+        ui.write('%s\n' % '\n'.join(sorted(author_set)))
 
 
 table = {