Skip to content

Commit 0519423

Browse files
committedNov 29, 2015
fix pyuic wrapper where qt4 & 5 are available
1 parent 079029e commit 0519423

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎python/core/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
try:
2+
import sip
3+
sip.setapi("QVariant", 2)
4+
except:
5+
pass
6+
17
import inspect
28
import string
39
from qgis._core import *

0 commit comments

Comments
 (0)
Please sign in to comment.