By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1790
Collapse All | Expand All

(-)python-trinity/configure.py.ORI (-2 / +2 lines)
Lines 30-36 Link Here
30
import py_compile
30
import py_compile
31
31
32
try:
32
try:
33
    import sipconfig
33
    from sip4_tqt import sipconfig
34
except:
34
except:
35
    print ("Can't find sipconfig.py (expected in sys.path)")
35
    print ("Can't find sipconfig.py (expected in sys.path)")
36
    print ("Have you built the correct version of sip?")
36
    print ("Have you built the correct version of sip?")
Lines 37-43 Link Here
37
    sys.exit (-1)
37
    sys.exit (-1)
38
38
39
try:
39
try:
40
    import pyqtconfig
40
    from python_tqt import pyqtconfig
41
except:
41
except:
42
    sipconfig.error ("Can't find pyqtconfig.py in sys.path - exiting")
42
    sipconfig.error ("Can't find pyqtconfig.py in sys.path - exiting")
43
43
(-)python-trinity/pytdeconfig.py.in.ORI (-1 / +2 lines)
Lines 22-28 Link Here
22
# modules that %Import PyKDE modules.
22
# modules that %Import PyKDE modules.
23
23
24
24
25
import sipconfig, pyqtconfig
25
from sip4_tqt import sipconfig
26
from python_tqt import pyqtconfig
26
27
27
28
28
# These are installation specific values created when PyTQt was configured.
29
# These are installation specific values created when PyTQt was configured.

Return to bug 1790