aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsource/pyAggr3g470r4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pyAggr3g470r b/source/pyAggr3g470r
index a0658126..1c972d06 100755
--- a/source/pyAggr3g470r
+++ b/source/pyAggr3g470r
@@ -129,7 +129,7 @@ if __name__ == "__main__":
python_command = "python"
if sys.version_info.major == 2:
# Ensures that code doesn't illegally mixed tabs and spaces
- python_command = "python3.2"
+ python_command = "python3.3"
if len(sys.argv) == 1:
usage()
elif sys.argv[1] == "start":
@@ -140,4 +140,4 @@ if __name__ == "__main__":
stop()
start(python_command)
else:
- usage() \ No newline at end of file
+ usage()
bgstack15