Browse Source

Fix style (long line)

semyon-slepov 6 years ago
parent
commit
6e312bd512
1 changed files with 2 additions and 1 deletions
  1. 2 1
      dulwich/porcelain.py

+ 2 - 1
dulwich/porcelain.py

@@ -327,7 +327,8 @@ def clone(source, target=None, bare=False, checkout=None,
     reflog_message = b'clone: from ' + source.encode('utf-8')
     try:
         fetch_result = fetch(
-            r, source, origin, errstream=errstream, message=reflog_message, **kwargs)
+            r, source, origin, errstream=errstream, message=reflog_message,
+            **kwargs)
         target_config = r.get_config()
         if not isinstance(source, bytes):
             source = source.encode(DEFAULT_ENCODING)