removed dependency from wolnelektury
authorJan Szejko <j-sz@o2.pl>
Thu, 21 Jan 2016 14:01:34 +0000 (15:01 +0100)
committerJan Szejko <j-sz@o2.pl>
Thu, 21 Jan 2016 14:01:34 +0000 (15:01 +0100)
librarian/__init__.py
librarian/packagers.py
librarian/partners.py
librarian/util.py

index d307def..0c77901 100644 (file)
@@ -10,7 +10,7 @@ import re
 import shutil
 import urllib
 
-from wolnelektury.utils import makedirs
+from util import makedirs
 
 
 class UnicodeException(Exception):
index b3ae955..f57a983 100644 (file)
@@ -7,7 +7,7 @@ import os
 from librarian import pdf, epub, mobi, DirDocProvider, ParseError
 from librarian.parser import WLDocument
 
-from wolnelektury.utils import makedirs
+from util import makedirs
 
 
 class Packager(object):
index dccb5b6..33198f7 100644 (file)
@@ -13,7 +13,7 @@ New partners shouldn't be added here, but in the partners repository.
 """
 
 from librarian import packagers, cover
-from wolnelektury.utils import makedirs
+from util import makedirs
 
 
 class GandalfEpub(packagers.EpubPackager):
index 396c84b..0886fd5 100644 (file)
@@ -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