diff options
author | Slávek Banko <[email protected]> | 2016-09-29 02:35:59 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-29 02:36:09 +0200 |
commit | 2af4c73f0f49ff0c262f65ca0d9a93905181e574 (patch) | |
tree | c64969c34515c21b6e38674f588791f6d26757a6 /grubconfig | |
parent | df9d151b0229fce8f6a2d10ec56e53169e81abe4 (diff) | |
download | tde-guidance-2af4c73f0f49ff0c262f65ca0d9a93905181e574.tar.gz tde-guidance-2af4c73f0f49ff0c262f65ca0d9a93905181e574.zip |
Properly import python_tqt moduler14.0.4
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit a7b3f0dc2315c54f38220595472ccbc79d5f317c)
Diffstat (limited to 'grubconfig')
-rw-r--r-- | grubconfig/grubconfig.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/grubconfig/grubconfig.py b/grubconfig/grubconfig.py index bcdf323..245b596 100644 --- a/grubconfig/grubconfig.py +++ b/grubconfig/grubconfig.py @@ -19,19 +19,7 @@ import sys import os import os.path -# Trinity-specific paths -tqt_modules = [] -for m_path in sys.path: - if os.path.exists(os.path.join(m_path, 'sip4_tqt')): - m_sip_dir = os.path.join(m_path, 'sip4_tqt') - tqt_modules.insert(0, m_sip_dir) - if os.path.exists(os.path.join(m_path, 'python_tqt')): - m_pyqt_dir = os.path.join(m_path, 'python_tqt') - tqt_modules.insert(0, m_pyqt_dir) -for m_path in tqt_modules: - sys.path.insert(0, m_path) - -from qt import * +from python_tqt.qt import * from tdeui import * from tdecore import * from tdefile import * |