diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-22 11:43:22 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-01-22 11:43:22 +0100 |
commit | 417aeaaa1ae0b419fbda49f5d24418463803ed58 (patch) | |
tree | dadf8d496784b3f9aec460e862249982b0470791 | |
parent | Updated message in the /feed page template. (diff) | |
download | newspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.tar.gz newspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.tar.bz2 newspipe-417aeaaa1ae0b419fbda49f5d24418463803ed58.zip |
Ensures that code doesn't illegally mixed tabs and spaces.
-rwxr-xr-x | source/pyAggr3g470r | 3 |
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": |