summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rparse.py b/rparse.py
index 224f745..e6b0113 100644
--- a/rparse.py
+++ b/rparse.py
@@ -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)