Fix line wrapping
authorMatt Mackall <mpm@selenic.com>
Wed, 09 Nov 2005 13:39:56 -0800
changeset 1523 fdda77dcf601
parent 1522 d07d729ce306
child 1524 0d47bb884330
Fix line wrapping
mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -549,7 +549,8 @@ def annotate(ui, repo, *pats, **opts):
     if not pats:
         raise util.Abort(_('at least one file name or pattern required'))
 
-    opmap = [['user', getname], ['number', str], ['changeset', getnode], ['date', getdate]]
+    opmap = [['user', getname], ['number', str], ['changeset', getnode],
+             ['date', getdate]]
     if not opts['user'] and not opts['changeset'] and not opts['date']:
         opts['number'] = 1