1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-08-31 08:32:01 +00:00

Forced regression scripts to use python 3

This commit is contained in:
Brian Carrier
2014-08-19 13:54:33 -04:00
parent 053ce78473
commit 357d43f4e3
2 changed files with 9 additions and 0 deletions

View File

@@ -398,5 +398,9 @@ def main():
if __name__ == "__main__":
if sys.hexversion < 0x03000000:
print("Python 3 required")
sys.exit(1)
sys.exit(main())