Skip to content

Commit d220315

Browse files
committed
Fixed inverted commas.
1 parent 3c99ce4 commit d220315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def readfile(filename):
3030
# Check the right Sage version
3131
class build(build_module.build):
3232
def run(self):
33-
errno = os.system('sage -python -c "from sagemath.check_version import check_version; check_version(%s)"'%sage_required_version)
33+
errno = os.system('''sage -python -c "from sagemath.check_version import check_version; check_version('%s')"'''%sage_required_version)
3434
if errno != 0:
3535
sys.exit(1)
3636
# from sagemath.check_version import check_version

0 commit comments

Comments
 (0)