]> git.phdru.name Git - bookmarks_db.git/blobdiff - writers.py
Fix(Robot): Stop splitting and un-splitting URLs
[bookmarks_db.git] / writers.py
index 50f74c5c1168772d31afef5ff4c5d04b3d37465c..217db79202e8cd81a610dfa811c2d31e61c80cb3 100644 (file)
@@ -20,7 +20,8 @@ writer_name, writer_params = parse_params(environ.get("BKMK_WRITER", "html"))
 def import_writer(writer_name):
     ns = locals()
     exec("from Writers import bkmk_w%s" % writer_name, globals(), ns)
-    exec("writer = bkmk_w%s.writer_%s" % (writer_name, writer_name), globals(), ns)
+    exec("writer = bkmk_w%s.writer_%s" %
+         (writer_name, writer_name), globals(), ns)
     return ns['writer']