aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 17:15:41 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 17:15:41 +0100
commit3e1d23397fb0eb82708df07b28e3a35b5f4f05e7 (patch)
tree58279b3794ada79271ad6b1d32802d265ddfd799 /source
parentEnsures that code doesn't illegally mixed tabs and spaces. (diff)
downloadnewspipe-3e1d23397fb0eb82708df07b28e3a35b5f4f05e7.tar.gz
newspipe-3e1d23397fb0eb82708df07b28e3a35b5f4f05e7.tar.bz2
newspipe-3e1d23397fb0eb82708df07b28e3a35b5f4f05e7.zip
Removed -tt option from python command line.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r b/source/pyAggr3g470r
index ef8582cc..72a763dd 100755
--- a/source/pyAggr3g470r
+++ b/source/pyAggr3g470r
@@ -120,7 +120,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 -tt"
+ python_command = "python3.2"
if len(sys.argv) == 1:
usage()
elif sys.argv[1] == "start":
bgstack15