commit | 0ab95ba6d010abe5d615fa070e404582aca1d90a | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Wed Feb 12 15:01:59 2020 +0900 |
committer | David Pursehouse <dpursehouse@collab.net> | Wed Feb 12 06:32:47 2020 +0000 |
tree | 0099fe91b9c4dc7da27365ab05fdd4ce6d45204b | |
parent | 5a2517f4115916bee9e55d99dab93a8b6ca4e185 [diff] |
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>
diff --git a/git_config.py b/git_config.py index 8cc52da..6b47456 100644 --- a/git_config.py +++ b/git_config.py
@@ -458,9 +458,7 @@ # 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)