[Secure-testing-commits] r25621 - lib/python
Luciano Bello
luciano at moszumanska.debian.org
Sat Feb 8 23:45:28 UTC 2014
Author: luciano
Date: 2014-02-08 23:45:28 +0000 (Sat, 08 Feb 2014)
New Revision: 25621
Modified:
lib/python/security_db.py
Log:
this closes #610222
Modified: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py 2014-02-08 21:56:40 UTC (rev 25620)
+++ lib/python/security_db.py 2014-02-08 23:45:28 UTC (rev 25621)
@@ -58,12 +58,12 @@
def mergeLists(a, b):
"""Merges two lists."""
- if type(a) == types.StringType:
+ if type(a) == types.UnicodeType:
if a == "":
a = []
else:
a = a.split(',')
- if type(b) == types.StringType:
+ if type(b) == types.UnicodeType:
if b == "":
b = []
else:
More information about the Secure-testing-commits
mailing list