diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 15:01:59 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 06:32:47 +0000 |
commit | 0ab95ba6d010abe5d615fa070e404582aca1d90a (patch) | |
tree | 0099fe91b9c4dc7da27365ab05fdd4ce6d45204b /git_config.py | |
parent | 5a2517f4115916bee9e55d99dab93a8b6ca4e185 (diff) | |
download | git-repo-0ab95ba6d010abe5d615fa070e404582aca1d90a.tar.gz |
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>
Diffstat (limited to 'git_config.py')
-rw-r--r-- | git_config.py | 4 |
1 files changed, 1 insertions, 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): | |||
458 | # to the log there. | 458 | # to the log there. |
459 | pass | 459 | pass |
460 | 460 | ||
461 | command = command_base[:1] + \ | 461 | command = command_base[:1] + ['-M', '-N'] + command_base[1:] |
462 | ['-M', '-N'] + \ | ||
463 | command_base[1:] | ||
464 | try: | 462 | try: |
465 | Trace(': %s', ' '.join(command)) | 463 | Trace(': %s', ' '.join(command)) |
466 | p = subprocess.Popen(command) | 464 | p = subprocess.Popen(command) |