Unverified Commit ca8dcdbc authored by Hardik Zinzuvadiya's avatar Hardik Zinzuvadiya Committed by GitHub
Browse files

Merge pull request #391 from cclauss/patch-4

Fix AttributeError: module 'os' has no attribute 'mkdirs'.
parents c188fe02 8cd67f7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ if __name__ == "__main__":

            with open(fpath) as f:
                archive = f.readline()
                os.mkdirs(archive, exist_ok=True)
                os.makedirs(archive, exist_ok=True)
                os.chdir(archive)
                AllTools().show_options()