From: Leandro Lucarella Date: Sun, 11 May 2008 16:23:36 +0000 (-0300) Subject: Convert to unicode before encoding to UTF-8 in firewall template (fixes #16). X-Git-Url: https://git.llucax.com/software/pymin.git/commitdiff_plain/ca4ef5acf013f667cae959cb633fa55621c9e158 Convert to unicode before encoding to UTF-8 in firewall template (fixes #16). --- diff --git a/pymin/services/firewall/templates/iptables.sh b/pymin/services/firewall/templates/iptables.sh index 80f4a32..e384d0e 100644 --- a/pymin/services/firewall/templates/iptables.sh +++ b/pymin/services/firewall/templates/iptables.sh @@ -4,7 +4,7 @@ # TODO escape shell commands more securely def s(text): - return repr(text.encode('utf-8')) + return repr(unicode(text).encode('utf-8')) def optional(switch, value): if value is not None: