Skip to content

Commit

Permalink
Merge pull request #223 from abstractfactory/fix213
Browse files Browse the repository at this point in the history
Fix #213
  • Loading branch information
mottosso authored Jul 27, 2017
2 parents 3095c3f + aa90087 commit e7c1d1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,10 @@ def _install():
setattr(our_submodule, member, their_member)

# Backwards compatibility
Qt.QtCompat.load_ui = Qt.QtCompat.loadUi
try:
Qt.QtCompat.load_ui = Qt.QtCompat.loadUi
except AttributeError:
pass


_install()
Expand Down

0 comments on commit e7c1d1a

Please sign in to comment.