Skip to content

Commit

Permalink
Minor: in the script that rebuilds the CEngine test files, got rid of…
Browse files Browse the repository at this point in the history
… conflicting references to using Python 3.3 and Python 3.4. Now the script just says "python" since it's better to run it within a virtual environment anyway.
  • Loading branch information
ndh2 committed Feb 19, 2016
1 parent 48337cc commit ea2c5c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions change_all_test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
the new SQLite3 format.
Call it as:
python3.3 change_all_test_files.py CEngine/modules/test/"""
python change_all_test_files.py CEngine/modules/test/"""



Expand Down Expand Up @@ -59,7 +59,7 @@ def main():
if os.path.isfile( dbFilePath ):
os.remove( dbFilePath )

cmd = ['python3.4', 'xml2sqlite.py', populationFilePath,
cmd = ['python', 'xml2sqlite.py', populationFilePath,
parameterFilePath, dbFilePath ]
print( ' '.join(cmd) )
subprocess.check_call(cmd)
Expand Down

0 comments on commit ea2c5c4

Please sign in to comment.