diff options
Diffstat (limited to 'src/tqtuicompiler.py')
-rw-r--r-- | src/tqtuicompiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tqtuicompiler.py b/src/tqtuicompiler.py index 0e84838..bf7ff11 100644 --- a/src/tqtuicompiler.py +++ b/src/tqtuicompiler.py @@ -59,11 +59,11 @@ def CompileUI(ui_file_name, py_file_name=None, kde=False): input = open(tmp_file_name, 'r') output = open(py_file_name, 'w') for line in input.readlines(): - if kde and string.strip(line) == 'from PyTQt.tqt import *': + if kde and str.strip(line) == 'from PyTQt.tqt import *': output.write(line) output.write('from tdecore import *\nfrom tdeui import *\n\n') - elif kde and string.find(line, " = KDatePicker(") != -1: - o = string.find(line, ",") + elif kde and str.find(line, " = KDatePicker(") != -1: + o = str.find(line, ",") output.write(line[:o] + ",TQDate.currentDate()" + line[o:]) else: output.write (line) |