瀏覽代碼

git_config: Unwrap unnecessarily wrapped line

Change-Id: I56806e8b9b09cd0f7fb834d7edc412682f2af1db
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254604
Reviewed-by: Mike Frysinger <vapier@google.com>
Tested-by: David Pursehouse <dpursehouse@collab.net>
David Pursehouse 6 年之前
父節點
當前提交
0ab95ba6d0
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      git_config.py

+ 1 - 3
git_config.py

@@ -458,9 +458,7 @@ def _open_ssh(host, port=None):
       # to the log there.
       pass
 
-    command = command_base[:1] + \
-              ['-M', '-N'] + \
-              command_base[1:]
+    command = command_base[:1] + ['-M', '-N'] + command_base[1:]
     try:
       Trace(': %s', ' '.join(command))
       p = subprocess.Popen(command)