From 025fe7e145b1a4896b32256d94890a8dc7e15754 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 25 Feb 2012 18:31:02 +0000 Subject: [PATCH] Correct brackets --- openlp/core/lib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index 650ae911d..d1e3b5308 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -329,7 +329,7 @@ def create_separated_list(stringlist): List of unicode strings """ if Qt.PYQT_VERSION_STR >= u'4.9': - return unicode(QtCore.QLocale.createSeparatedList(stringlist)) + return unicode(QtCore.QLocale().createSeparatedList(stringlist)) if not stringlist: return u'' elif len(stringlist) == 1: