From ad58564193ba3f28a90c3aec638e479558cefb2a Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Tue, 19 Nov 2013 19:00:00 +0100 Subject: [PATCH] [attributs] Valeurs par defaut en unicode --- attributs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attributs.py b/attributs.py index 0344e81..a88d5a3 100644 --- a/attributs.py +++ b/attributs.py @@ -679,7 +679,7 @@ class ipHostNumber(Attr): category = 'base_tech' can_modify = [nounou] ldap_name = "ipHostNumber" - default = '' + default = u'' def parse_value(self, ip): if ip == '': @@ -699,7 +699,7 @@ class ip6HostNumber(Attr): category = 'base_tech' can_modify = [nounou] ldap_name = "ip6HostNumber" - default = '' + default = u'' def parse_value(self, ip6): if ip6 == '':