diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-06 03:14:42 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-06 03:14:42 +0200 |
commit | a8ba28e8702d19be8d173ea14b75e40577c45f4b (patch) | |
tree | 253b2c30bca7106a86a8ba8b876aaebf9c681f36 | |
parent | cd to pyaggr3g470r/source (diff) | |
download | newspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.tar.gz newspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.tar.bz2 newspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.zip |
Default Python version is now 3.3.
-rwxr-xr-x | source/pyAggr3g470r | 4 |
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() |