From ac46fe92f07250a18156a440e1cc211cb0e0a97e Mon Sep 17 00:00:00 2001 From: Jon Tibble Date: Mon, 10 Jan 2011 20:19:27 +0000 Subject: [PATCH] Remove redundant unicode() --- openlp/core/ui/servicemanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 5d8d12cb5..2d85e4b7f 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -482,7 +482,7 @@ class ServiceManager(QtGui.QWidget): zip = None fileTo = None try: - zip = zipfile.ZipFile(unicode(fileName)) + zip = zipfile.ZipFile(fileName) for file in zip.namelist(): try: ucsfile = file.decode(u'utf-8')