summaryrefslogtreecommitdiffstats
path: root/gitsrht/blueprints/repo.py
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-11-18 00:23:40 -0500
committerDrew DeVault <sir@cmpwn.com>2018-11-18 00:23:40 -0500
commit901358e5f335468b6f3ac1d7d022da15d355cf2d (patch)
treed88355c7478bb2283af9d4f1bc7fbacaff903ac1 /gitsrht/blueprints/repo.py
parentc4eb0b80fde46206fd9cd3be13eb36df7840d222 (diff)
Remove extraneous debug logging
Diffstat (limited to 'gitsrht/blueprints/repo.py')
-rw-r--r--gitsrht/blueprints/repo.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/gitsrht/blueprints/repo.py b/gitsrht/blueprints/repo.py
index 0210f7f..6ba09ff 100644
--- a/gitsrht/blueprints/repo.py
+++ b/gitsrht/blueprints/repo.py
@@ -226,7 +226,6 @@ def archive(owner, repo, ref):
"--prefix", f"{repo.name}-{ref}/",
"-o", path, ref
]
- print(args)
subp = subprocess.run(args, timeout=30,
stdout=sys.stdout, stderr=sys.stderr)
except: