CREATE_BLADERUNNER: Remove Python 2.7 guard

This commit is contained in:
Vladimir Serbinenko 2023-05-22 22:16:45 +02:00 committed by Athanasios Antoniou
parent 7373cc0de5
commit ecf7283251
2 changed files with 0 additions and 8 deletions

View File

@ -12,10 +12,6 @@ if (not sysLibFound):
sys.stdout.write("[Error] Errors were found when trying to import required python libraries\n")
sys.exit(1)
if not (sys.version_info[0] == 2 and sys.version_info[1] == 7):
sys.stdout.write("[Error] Blade Runner Font Creator script requires Python 2.7\n")
sys.exit(1)
import grabberFromPNG17BR
if __name__ == "__main__":
grabberFromPNG17BR.main(sys.argv[0:])

View File

@ -12,10 +12,6 @@ if (not sysLibFound):
sys.stdout.write("[Error] Errors were found when trying to import required python libraries\n")
sys.exit(1)
if not (sys.version_info[0] == 2 and sys.version_info[1] == 7):
sys.stdout.write("[Error] Blade Runner MIX Resource Creator script requires Python 2.7\n")
sys.exit(1)
import packBladeRunnerMIXFromPCTLKXLS04
if __name__ == "__main__":
packBladeRunnerMIXFromPCTLKXLS04.main(sys.argv[0:])