Fixed all lint errors

This commit is contained in:
terrytangyuan
2015-12-11 18:46:15 -06:00
parent a7e79e089b
commit 0eb6240fd0
6 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ sys.path.insert(0, '.')
#it builds xgboost code on the fly and packs for pip
#please don't use this file for installing from github
if not os.name == 'nt': #if not windows, compile and install
if os.name != 'nt': #if not windows, compile and install
os.system('sh ./xgboost/build-python.sh')
else:
print('Windows users please use github installation.')