PatchTool/Patcher.py

8 lines
151 B
Python
Raw Normal View History

import os
scriptPath = input("What patch file do you want to run?")
script = open(scriptPath, "r")
for line in script:
print(line)
script.close()