code style
[edumed.git] / contact / utils.py
index ce37833..bba8c34 100644 (file)
@@ -1,8 +1,12 @@
+# -*- coding: utf-8 -*-
+
+
 def csv_escape(string):
     return '"' + string.replace('\r\n', ' ').replace('\n', ' ').replace('"', '\"') + '"'
 
+
 def csv_prepare(obj):
     to_escape = obj
     if not isinstance(obj, unicode):
         to_escape = str(to_escape)
-    return csv_escape(to_escape)
\ No newline at end of file
+    return csv_escape(to_escape)