diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2023-01-19 18:01:26 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-01-20 13:05:37 +0900 |
commit | 94f5a3f12e1c61aa2f3cde2d7b260c08489336ac (patch) | |
tree | 9062a30a1d81a1a97e9397548e4ec48ae63c18a4 /wineconfig/firstrunwizard.py | |
parent | b9c0b6996a6da72f93baf50121a1be4a6fa48d2e (diff) | |
download | tde-guidance-94f5a3f12e1c61aa2f3cde2d7b260c08489336ac.tar.gz tde-guidance-94f5a3f12e1c61aa2f3cde2d7b260c08489336ac.zip |
Drop python2 support.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'wineconfig/firstrunwizard.py')
-rwxr-xr-x | wineconfig/firstrunwizard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wineconfig/firstrunwizard.py b/wineconfig/firstrunwizard.py index 3b3af81..8d22264 100755 --- a/wineconfig/firstrunwizard.py +++ b/wineconfig/firstrunwizard.py @@ -37,7 +37,7 @@ class FirstRunWizard(KWizard): if not name: self.setName("firstrunwizard") - self.imagedir = unicode(TDEGlobal.dirs().findDirs("data","guidance/pics")[0]) + self.imagedir = str(TDEGlobal.dirs().findDirs("data","guidance/pics")[0]) self.setupPage1() self.setupPageVersion() |