diff hggit/__init__.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 70c9dfdb0bc1
line wrap: on
line diff
--- a/hggit/__init__.py	Mon Nov 27 18:46:07 2017 -0500
+++ b/hggit/__init__.py	Mon Nov 27 19:05:08 2017 -0500
@@ -284,9 +284,9 @@
 def gverify(ui, repo, **opts):
     '''verify that a Mercurial rev matches the corresponding Git rev
 
-    Given a Mercurial revision that has a corresponding Git revision in the map,
-    this attempts to answer whether that revision has the same contents as the
-    corresponding Git revision.
+    Given a Mercurial revision that has a corresponding Git revision in the
+    map, this attempts to answer whether that revision has the same contents as
+    the corresponding Git revision.
 
     '''
     ctx = scmutil.revsingle(repo, opts.get('rev'), '.')
@@ -465,7 +465,8 @@
 
 
 def gitnodekw(**args):
-    """:gitnode: String.  The Git changeset identification hash, as a 40 hexadecimal digit string."""
+    """:gitnode: String. The Git changeset identification hash, as a 40 hexadecimal
+digit string."""
     node = args['ctx']
     repo = args['repo']
     gitnode = repo.githandler.map_git_get(node.hex())