]> git.phdru.name Git - phdru.name/phdru.name.git/blobdiff - phd.py
Encode unicode parts
[phdru.name/phdru.name.git] / phd.py
diff --git a/phd.py b/phd.py
index f34437a9af1b647e5f3078f6978a0c14bd91ac67..d1821b1abcc93beed7d6b5bcdedccbacc2c623a3 100644 (file)
--- a/phd.py
+++ b/phd.py
@@ -9,7 +9,7 @@ def _url2href(match):
    return '<a href="%s">%s</a>' % (url, url)
 
 
-full_dirs = len(os.getcwd().split('/')) + 2
+full_dirs = len(os.getcwd().split('/')) + 1
 
 class phd(Template):
    def __init__(self, *args, **kw):
@@ -80,7 +80,13 @@ class phd(Template):
          subtitle = "<h2>%s</h2>" % subtitle
 
       body = parts["body"]
-      parts = [part for part in (title, subtitle, body) if part]
+      parts = []
+      for part in (title, subtitle, body):
+          if not part:
+              continue
+          if isinstance(part, unicode):
+              part = part.encode('utf-8')
+          parts.append(part)
       return "\n\n".join(parts)
 
    def mkd2html(self):