[Pkg-bazaar-commits] ./bzr/unstable r584: - make relpath and revision-history hidden commands

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


------------------------------------------------------------
revno: 584
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Mon 2005-05-30 11:49:40 +1000
message:
  - make relpath and revision-history hidden commands
modified:
  bzrlib/commands.py
-------------- next part --------------
=== modified file 'bzrlib/commands.py'
--- a/bzrlib/commands.py	2005-05-30 01:47:37 +0000
+++ b/bzrlib/commands.py	2005-05-30 01:49:40 +0000
@@ -325,6 +325,7 @@
 class cmd_relpath(Command):
     """Show path of a file relative to root"""
     takes_args = ['filename']
+    hidden = True
     
     def run(self, filename):
         print Branch(filename).relpath(filename)
@@ -466,6 +467,7 @@
 
 class cmd_revision_history(Command):
     """Display list of revision ids on this branch."""
+    hidden = True
     def run(self):
         for patchid in Branch('.').revision_history():
             print patchid



More information about the Pkg-bazaar-commits mailing list