codecombat/scripts/devSetup
Akhil Thampy 673b5ff04e Fix for "Type str doesn't support the buffer API"
subprocess.check_output("mongod --version",shell=True) returns a byte
string so to convert it to a regular string we should do this :
mongo_version_string = subprocess.check_output("mongod
--version",shell=True)
mongo_version_string = mongo_version_string.decode(encoding='UTF-8')
2014-02-26 23:15:04 -06:00
..
.gitignore Ready for action, sir! 2014-01-03 10:32:13 -08:00
bootstrap.sh Added check if node exists 2014-02-12 11:05:19 -08:00
configuration.py Ready for action, sir! 2014-01-03 10:32:13 -08:00
dependency.py Ready for action, sir! 2014-01-03 10:32:13 -08:00
directoryController.py Fixed temporary directory removal bug 2014-01-09 10:11:30 -05:00
downloader.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
errors.py Ready for action, sir! 2014-01-03 10:32:13 -08:00
factories.py Fix for "Type str doesn't support the buffer API" 2014-02-26 23:15:04 -06:00
mongo.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
node.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
repositoryInstaller.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
ruby.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
setup.py Ready for action, sir! 2014-01-03 10:32:13 -08:00
systemConfiguration.py Modified python scripts to support both python2.7 and python3 natively 2014-02-11 04:30:58 +10:00
which.py Ready for action, sir! 2014-01-03 10:32:13 -08:00