Skip to content

Commit

Permalink
support/testing/tests/download/gitremote: remove trailing whitespace
Browse files Browse the repository at this point in the history
Fixes the following flake8 warnings:

support/testing/tests/download/gitremote.py:29:67: W291 trailing whitespace
support/testing/tests/download/gitremote.py:30:60: W291 trailing whitespace

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
  • Loading branch information
tpetazzoni committed Feb 4, 2019
1 parent 73f0c6c commit 7dd2f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions support/testing/tests/download/gitremote.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def __init__(self, builddir, serveddir, logtofile):
self.port = None
self.logfile = infra.open_log_file(builddir, "gitremote", logtofile)

daemon_cmd = ["git", "daemon", "--reuseaddr", "--verbose",
"--listen=localhost", "--export-all",
daemon_cmd = ["git", "daemon", "--reuseaddr", "--verbose",
"--listen=localhost", "--export-all",
"--base-path={}".format(serveddir)]
for port in range(GIT_REMOTE_PORT_INITIAL, GIT_REMOTE_PORT_LAST + 1):
cmd = daemon_cmd + ["--port={port}".format(port=port)]
Expand Down

0 comments on commit 7dd2f4f

Please sign in to comment.