support/testing/tests/download/gitremote: remove trailing whitespace
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Mon, 4 Feb 2019 16:10:35 +0000 (17:10 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Mon, 4 Feb 2019 16:10:35 +0000 (17:10 +0100)
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>
support/testing/tests/download/gitremote.py

index a6e69a1ef1235ba18fd607e9d127052a4e99812c..3b35456dd18cbb5e638f1049cafb9b0a742b13d7 100644 (file)
@@ -26,8 +26,8 @@ class GitRemote(object):
         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)]