From 40d9848fec537079a38d2d7b0fc24c14508b8626 Mon Sep 17 00:00:00 2001
From: gyulaid <gyulaid@gyulai.cloud>
Date: Sun, 10 Apr 2022 18:41:12 +0000
Subject: [PATCH] Remove command string

---
 alice-ci/src/alice/runners/pypirunner.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/alice-ci/src/alice/runners/pypirunner.py b/alice-ci/src/alice/runners/pypirunner.py
index 332cdb3..fb821c3 100644
--- a/alice-ci/src/alice/runners/pypirunner.py
+++ b/alice-ci/src/alice/runners/pypirunner.py
@@ -148,8 +148,6 @@ class PyPiRunner():
         if len(to_upload) == 0:
             return
         command += to_upload
-        print(command)
-        print(" ".join(command))
         with subprocess.Popen(command, cwd=config.workdir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
             p.wait()
             if p.returncode != 0: