summaryrefslogtreecommitdiffstats
path: root/odl-pipeline/lib/utils/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'odl-pipeline/lib/utils/shutil.py')
-rwxr-xr-xodl-pipeline/lib/utils/shutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/odl-pipeline/lib/utils/shutil.py b/odl-pipeline/lib/utils/shutil.py
index 40e2aba..5f6d482 100755
--- a/odl-pipeline/lib/utils/shutil.py
+++ b/odl-pipeline/lib/utils/shutil.py
@@ -17,7 +17,7 @@ class shutil():
classdocs
'''
@staticmethod
- def mkdir_if_not_exsist(path):
+ def mkdir_if_not_exist(path):
if not path:
raise Exception('Path should not be empty.')
putils.execute(["mkdir", "-p", path])