##// END OF EJS Templates
setup: raise when executing with python3 without c2to3 argument
Simon Heimberg -
r15500:d5abe76d default
parent child Browse files
Show More
@@ -78,7 +78,8 b' if convert2to3:'
78 raise SystemExit("--c2to3 is only compatible with python3.")
78 raise SystemExit("--c2to3 is only compatible with python3.")
79 raise
79 raise
80 sys.path.append('contrib')
80 sys.path.append('contrib')
81
81 elif sys.version_info[0] >= 3:
82 raise SystemExit("setup.py with python3 needs --c2to3 (experimental)")
82
83
83 scripts = ['hg']
84 scripts = ['hg']
84 if os.name == 'nt':
85 if os.name == 'nt':
General Comments 0
You need to be logged in to leave comments. Login now