浏览代码

rmdir can be easily done without calling the shell.

Pavel Machek 7 月之前
父节点
当前提交
8d74a7da06
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      mpegize.py

+ 2 - 2
mpegize.py

@@ -418,8 +418,8 @@ class Mpegize:
         print("mpegize command base-dir destination-movie fps dng|grw")
 
     def cleanup(m):
-        os.system("rmdir %s/sm/" % m.base)
-        os.system("rmdir %s/" % m.base)
+        os.rmdir(m.base+"/sm/")
+        os.rmdir(m.base)
         print("Message: Rec")
         sys.stdout.flush()