summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/release.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/release.py b/scripts/release.py
index c540640..8253ab1 100644
--- a/scripts/release.py
+++ b/scripts/release.py
@@ -63,8 +63,7 @@ def upload_artifacts(version):
args = ['twine', 'upload']
for fn in artifacts:
if matches(fn):
- filename = os.path.join('dist', fn)
- args.extend([filename, filename + '.asc'])
+ args.append(os.path.join('dist', fn))
subprocess.check_call(args)