diff hggit/overlay.py @ 1116:bd1a01f98154

cleanup: wrap to 80 chars
author Sean Farley <sean@farley.io>
date Mon, 27 Nov 2017 19:05:08 -0500
parents 8ed6c0cae9b8
children 80664524802b
line wrap: on
line diff
--- a/hggit/overlay.py	Mon Nov 27 18:46:07 2017 -0500
+++ b/hggit/overlay.py	Mon Nov 27 19:05:08 2017 -0500
@@ -103,8 +103,9 @@
         return self._map.get(path, default)
 
     def diff(self, m2, match=None, clean=False):
-        # Older mercurial clients used diff(m2, clean=False). If a caller failed
-        # to specify clean as a keyword arg, it might get passed as match here.
+        # Older mercurial clients used diff(m2, clean=False). If a caller
+        # failed to specify clean as a keyword arg, it might get passed as
+        # match here.
         if isinstance(match, bool):
             clean = match
             match = None
@@ -161,8 +162,8 @@
     kwargs = {
         'clean': clean
     }
-    # Older versions of mercurial don't support the match arg, so only add it if
-    # it exists.
+    # Older versions of mercurial don't support the match arg, so only add it
+    # if it exists.
     if match is not None:
         kwargs['match'] = match
     if isinstance(m2, overlaymanifest):