Missing files from previous commit.
[librarian.git] / librarian / __init__.py
old mode 100755 (executable)
new mode 100644 (file)
index d56440d..10c3766
@@ -1,6 +1,8 @@
 # -*- coding: utf-8 -*-
-# exception classes
-
+#
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 class ParseError(Exception):
     
     def __init__(self, cause, message=None):
@@ -97,12 +99,8 @@ def serialize_raw(element):
 
     return b
 
-from wl_light import serialize_nl
-
-
 SERIALIZERS = {
     'raw': serialize_raw,
-    'nl': serialize_nl,
 }
 
 def serialize_children(element, format='raw'):