We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e54bec3 commit b61b1d6Copy full SHA for b61b1d6
roundup/version_check.py
@@ -2,9 +2,10 @@
2
3
# Roundup requires Python 2.7+ as mentioned in doc\installation.txt
4
from __future__ import print_function
5
-VERSION_NEEDED = (2,7)
6
-
7
import sys
+
+VERSION_NEEDED = (2, 7)
8
9
if sys.version_info < VERSION_NEEDED:
10
print("Content-Type: text/plain\n")
11
print("Roundup requires Python %s.%s or newer." % VERSION_NEEDED)
0 commit comments