comparison python/ide/qtwrapper.py @ 343:11c5a8a70c02 devel

Fix ide
author Windel Bouwman
date Sat, 01 Mar 2014 16:27:52 +0100
parents dcae6574c974
children
comparison
equal deleted inserted replaced
342:86b02c98a717 343:11c5a8a70c02
1 import os 1 import os
2 from PyQt5 import QtCore, QtGui, QtWidgets 2 from PyQt5 import QtCore, QtGui, QtWidgets, uic
3 from PyQt5.QtCore import pyqtSignal, Qt 3 from PyQt5.QtCore import pyqtSignal, Qt
4 4
5 def abspath(filename): 5 def abspath(filename):
6 script_path = os.path.abspath(os.path.dirname(__file__)) 6 script_path = os.path.abspath(os.path.dirname(__file__))
7 return os.path.join(script_path, filename) 7 return os.path.join(script_path, filename)