X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/e57b146bf49e38b3bb57615110b27de5b4d1ae69..cf4dc6946d3afec0ed5dea88c8d833c017d97bf0:/librarian/util.py?ds=inline

diff --git a/librarian/util.py b/librarian/util.py
index 396c84b..0886fd5 100644
--- a/librarian/util.py
+++ b/librarian/util.py
@@ -2,6 +2,8 @@
 # by Paul Winkler 
 # http://code.activestate.com/recipes/81611-roman-numerals/
 # PSFL (GPL compatible)
+import os
+
 
 def int_to_roman(input):
     """
@@ -115,3 +117,8 @@ def roman_to_int(input):
         return sum
     else:
         raise ValueError, 'input is not a valid roman numeral: %s' % input
+
+
+def makedirs(path):
+    if not os.path.isdir(path):
+        os.makedirs(path)
\ No newline at end of file