fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
https repository in requirements
[edumed.git]
/
contact
/
utils.py
diff --git
a/contact/utils.py
b/contact/utils.py
index
ce37833
..
bba8c34
100644
(file)
--- a/
contact/utils.py
+++ b/
contact/utils.py
@@
-1,8
+1,12
@@
+# -*- coding: utf-8 -*-
+
+
def csv_escape(string):
return '"' + string.replace('\r\n', ' ').replace('\n', ' ').replace('"', '\"') + '"'
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)
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)