Skip to content

Commit

Permalink
Merge pull request #172 from sol-ansano-kim/fix-qt-testing
Browse files Browse the repository at this point in the history
fix QT_TESTING test
  • Loading branch information
mottosso authored Dec 16, 2016
2 parents f2e1d56 + 514ef49 commit 7b774ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
self.__modified__ = list() # Existing members modified in some way

# Below members are set dynamically on import relative the original binding.
self.__version__ = "0.6.8"
self.__version__ = "0.6.9"
self.__qt_version__ = "0.0.0"
self.__binding__ = "None"
self.__binding_version__ = "0.0.0"
Expand Down Expand Up @@ -124,7 +124,7 @@ def _remap(object, name, value, safe=True):
"""

if QT_TESTING is not None and safe:
if QT_TESTING and safe:
# Cannot alter original binding.
if hasattr(object, name):
raise AttributeError("Cannot override existing name: "
Expand Down

0 comments on commit 7b774ff

Please sign in to comment.