diff mercurial/cmdutil.py @ 4836:0e2d0a78f81a

archive: make the %r escape work.
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Wed, 11 Jul 2007 19:56:16 -0300
parents 3cf94964c56b
children 30847b8af7ca 10afa3fab6b4
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Wed Jul 11 19:56:16 2007 -0300
+++ b/mercurial/cmdutil.py	Wed Jul 11 19:56:16 2007 -0300
@@ -542,9 +542,9 @@
     try:
         if node:
             expander.update(node_expander)
-        if node and revwidth is not None:
+        if node:
             expander['r'] = (lambda:
-                    str(repo.changelog.rev(node)).zfill(revwidth))
+                    str(repo.changelog.rev(node)).zfill(revwidth or 0))
         if total is not None:
             expander['N'] = lambda: str(total)
         if seqno is not None: