diff options
-rw-r--r-- | rparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,6 @@ def fm(f): return os.getcwd()+"/"+f for f in os.listdir(os.getcwd()): - subprocess.run("mv %s %s" % (fm(f), fm(f.replace(".rpy", ".py"))), shell=True) + subprocess.call("mv %s %s" % (fm(f), fm(f.replace(".rpy", ".py"))), shell=True) subprocess.call("ls %s" % os.getcwd(), shell=True) |