From 0ab95ba6d010abe5d615fa070e404582aca1d90a Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 12 Feb 2020 15:01:59 +0900 Subject: [PATCH] git_config: Unwrap unnecessarily wrapped line Change-Id: I56806e8b9b09cd0f7fb834d7edc412682f2af1db Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254604 Reviewed-by: Mike Frysinger Tested-by: David Pursehouse --- git_config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/git_config.py b/git_config.py index 8cc52dab..6b47456f 100644 --- a/git_config.py +++ b/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)