diff -r e8730b5b8a32 -r eb0b4a2d70a9 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Thu Nov 16 08:52:55 2006 +0100 +++ b/mercurial/cmdutil.py Fri Nov 17 08:06:54 2006 +0100 @@ -93,7 +93,7 @@ if seqno is not None: expander['n'] = lambda: str(seqno) if total is not None and seqno is not None: - expander['n'] = lambda:str(seqno).zfill(len(str(total))) + expander['n'] = lambda: str(seqno).zfill(len(str(total))) if pathname is not None: expander['s'] = lambda: os.path.basename(pathname) expander['d'] = lambda: os.path.dirname(pathname) or '.'