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-tqt/pyqtconfig.py.in.ORI (-1 / +1 lines)
Lines 21-27 Link Here
21
# modules that %Import PyTQt modules.
21
# modules that %Import PyTQt modules.
22
22
23
23
24
import sipconfig
24
from sip4_tqt import sipconfig
25
25
26
26
27
# These are installation specific values created when PyTQt was configured.
27
# These are installation specific values created when PyTQt was configured.
(-)python-tqt/build.py.ORI (-1 / +1 lines)
Lines 35-41 Link Here
35
35
36
# Get the SIP configuration.
36
# Get the SIP configuration.
37
try:
37
try:
38
    import sipconfig
38
    from sip4_tqt import sipconfig
39
except:
39
except:
40
    print "Unable to import the sipconfig module.  Please make sure you have"
40
    print "Unable to import the sipconfig module.  Please make sure you have"
41
    print "SIP v3.9 or later installed."
41
    print "SIP v3.9 or later installed."
(-)python-tqt/configure.py.ORI (-1 / +1 lines)
Lines 28-34 Link Here
28
import shutil
28
import shutil
29
import py_compile
29
import py_compile
30
30
31
import sipconfig
31
from sip4_tqt import sipconfig
32
32
33
src_dir = os.path.dirname(os.path.abspath(__file__))
33
src_dir = os.path.dirname(os.path.abspath(__file__))
34
34

Return to bug 1790