mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-03 08:46:32 +01:00
Fixed AttributError: module 'os'
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
de681e547c
commit
2bbdda0ec5
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class Initialization(Utils):
|
||||||
def make_dir(self, path: list):
|
def make_dir(self, path: list):
|
||||||
for p in path:
|
for p in path:
|
||||||
if not os.path.exists(p):
|
if not os.path.exists(p):
|
||||||
os.make_dir(p)
|
os.mkdir(p)
|
||||||
|
|
||||||
def make_dirs(self, path: list):
|
def make_dirs(self, path: list):
|
||||||
for p in path:
|
for p in path:
|
||||||
|
|
Loading…
Add table
Reference in a new issue