aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 11:43:22 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-22 11:43:22 +0100
commit417aeaaa1ae0b419fbda49f5d24418463803ed58 (patch)
treedadf8d496784b3f9aec460e862249982b0470791 /source
parentUpdated message in the /feed page template. (diff)
downloadnewspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.tar.gz
newspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.tar.bz2
newspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.zip
Ensures that code doesn't illegally mixed tabs and spaces.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/pyAggr3g470r b/source/pyAggr3g470r
index f9177374..ef8582cc 100755
--- a/source/pyAggr3g470r
+++ b/source/pyAggr3g470r
@@ -119,7 +119,8 @@ if __name__ == "__main__":
# Point of entry in execution mode.
python_command = "python"
if sys.version_info.major == 2:
- python_command = "python3.2"
+ # Ensures that code doesn't illegally mixed tabs and spaces
+ python_command = "python3.2 -tt"
if len(sys.argv) == 1:
usage()
elif sys.argv[1] == "start":
bgstack15