[Pkg-bazaar-commits] ./bzr/unstable r371: - Fix up bzr log command

Martin Pool mbp at sourcefrog.net
Fri Apr 10 07:52:03 UTC 2009


------------------------------------------------------------
revno: 371
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Thu 2005-05-05 17:00:55 +1000
message:
  - Fix up bzr log command
modified:
  bzrlib/commands.py
-------------- next part --------------
=== modified file 'bzrlib/commands.py'
--- a/bzrlib/commands.py	2005-05-05 06:59:12 +0000
+++ b/bzrlib/commands.py	2005-05-05 07:00:55 +0000
@@ -426,9 +426,10 @@
     takes_options = ['timezone', 'verbose', 'show-ids']
     def run(self, timezone='original', verbose=False, show_ids=False):
         b = Branch('.', lock_mode='r')
-        b.show_log(show_timezone=timezone,
-                   verbose=verbose,
-                   show_ids=show_ids)
+        bzrlib.show_log(b,
+                        show_timezone=timezone,
+                        verbose=verbose,
+                        show_ids=show_ids)
 
 
 class cmd_ls(Command):



More information about the Pkg-bazaar-commits mailing list