changeset 18799:0ed95fe674a8

debugpathcomplete: satisfy the code checker
author Bryan O'Sullivan <bryano@fb.com>
date Thu, 21 Mar 2013 22:29:31 -0700
parents 0ea3b8e8ce7a
children a624210e4866
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Thu Mar 21 22:26:01 2013 -0700
+++ b/mercurial/commands.py	Thu Mar 21 22:29:31 2013 -0700
@@ -2177,7 +2177,7 @@
                     continue
                 s = f.find(os.sep, speclen)
                 if s >= 0:
-                    adddir(f[:s+1])
+                    adddir(f[:s + 1])
                 else:
                     addfile(f)
         return files, dirs