[Pkg-bazaar-commits] ./bzr/unstable r503: - fix verboseness in commit command

Martin Pool mbp at sourcefrog.net
Fri Apr 10 08:19:20 UTC 2009


------------------------------------------------------------
revno: 503
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Mon 2005-05-16 12:47:58 +1000
message:
  - fix verboseness in commit command
modified:
  bzrlib/commit.py
-------------- next part --------------
=== modified file 'bzrlib/commit.py'
--- a/bzrlib/commit.py	2005-05-16 02:46:07 +0000
+++ b/bzrlib/commit.py	2005-05-16 02:47:58 +0000
@@ -143,12 +143,12 @@
                 mutter('    stored with text_id {%s}' % entry.text_id)
                 if verbose:
                     if not old_ie:
-                        note('added %s' % path)
+                        print('added %s' % path)
                     elif (old_ie.name == entry.name
                           and old_ie.parent_id == entry.parent_id):
-                        note('modified %s' % path)
+                        print('modified %s' % path)
                     else:
-                        note('renamed %s' % path)
+                        print('renamed %s' % path)
 
 
     for file_id in missing_ids:



More information about the Pkg-bazaar-commits mailing list