aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-06 03:14:42 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-06 03:14:42 +0200
commita8ba28e8702d19be8d173ea14b75e40577c45f4b (patch)
tree253b2c30bca7106a86a8ba8b876aaebf9c681f36 /source
parentcd to pyaggr3g470r/source (diff)
downloadnewspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.tar.gz
newspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.tar.bz2
newspipe-a8ba28e8702d19be8d173ea14b75e40577c45f4b.zip
Default Python version is now 3.3.
Diffstat (limited to 'source')
-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