From: duplo Date: Fri, 19 Dec 2008 09:21:25 +0000 (+0000) Subject: Use unicode instead of str X-Git-Tag: 2.1.0~586 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=84636be7f9e8b196586718a4c94331dd51c5e7f9;p=bertos.git Use unicode instead of str git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2096 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BVersionPage.py b/wizard/BVersionPage.py index 5ba51bd1..a5a9bd5e 100644 --- a/wizard/BVersionPage.py +++ b/wizard/BVersionPage.py @@ -60,7 +60,7 @@ class BVersionPage(BWizardPage): def isComplete(self): if self.pageContent.versionList.currentRow() != -1: - self._projectInfoStore("SOURCES_PATH", str(self.pageContent.versionList.currentItem().data(Qt.UserRole).toString())) + self._projectInfoStore("SOURCES_PATH", unicode(self.pageContent.versionList.currentItem().data(Qt.UserRole).toString())) return True else: return False