We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd6addf + 031f3a5 commit 1ea15e4Copy full SHA for 1ea15e4
scripts/dorelease.py
@@ -259,7 +259,7 @@ def main():
259
260
newverstr = args[0]
261
prepline = "Preparing new release: {}".format(newverstr)
262
- banner = "="*len(prepline) + "\n" + prepline + "\n" + "="*len(prepline)
+ banner = "=" * len(prepline) + "\n" + prepline + "\n" + "=" * len(prepline)
263
banner = bold_begin + banner + bold_end
264
print(banner)
265
@@ -278,7 +278,7 @@ def main():
278
279
print("Creating archives...")
280
os.chdir(gitroot)
281
- ret = call(["python", "setup.py", "sdist", "bdist_wheel"])
+ ret = call(["python3", "setup.py", "sdist", "bdist_wheel"])
282
283
if ret > 0:
284
die("Error creating package")
0 commit comments