filesystem: fixing utf-8 issues switching to jinja
[treecutter.git] / treecutter / directory.py
index 19c4d8b4182cf4d4764d9ec77442a0473fd76839..7519a6b27bd4b044ccb57986eaf9961b10eed846 100644 (file)
@@ -7,7 +7,7 @@ import treecutter.constants as const
 class Directory():
     """Class containing the state of the directory with articles"""
     def __init__(self):
-        self._cwd = '.'
+        self._cwd = u'.'
         self._tree = []
 
     def scan(self):