diff options
Diffstat (limited to 'source')
-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": |