From 417aeaaa1ae0b419fbda49f5d24418463803ed58 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 22 Jan 2013 11:43:22 +0100 Subject: Ensures that code doesn't illegally mixed tabs and spaces. --- source/pyAggr3g470r | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source') 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": -- cgit