patch: fix typo in comment
authorMartin Geisler <mg@aragost.com>
Thu, 12 Aug 2010 17:58:03 +0200
changeset 11820 75de514a50f3
parent 11819 1c00577b0298
child 11821 15aa42aaae4c
patch: fix typo in comment
mercurial/patch.py
--- a/mercurial/patch.py	Thu Aug 05 12:25:53 2010 +0200
+++ b/mercurial/patch.py	Thu Aug 12 17:58:03 2010 +0200
@@ -927,8 +927,8 @@
     createfunc = hunk.createfile
     missing = not goodb and not gooda and not createfunc()
 
-    # some diff programs apparently produce create patches where the
-    # afile is not /dev/null, but afile starts with bfile
+    # some diff programs apparently produce patches where the afile is
+    # not /dev/null, but afile starts with bfile
     abasedir = afile[:afile.rfind('/') + 1]
     bbasedir = bfile[:bfile.rfind('/') + 1]
     if missing and abasedir == bbasedir and afile.startswith(bfile):