Skip to content

Commit

Permalink
qtpy: update to v1.4.2
Browse files Browse the repository at this point in the history
Shrink the diff between our vendored qtpy and upstream.  The only
difference is we don't print a warning when the bindings change.

Signed-off-by: David Aguilar <davvid@gmail.com>
  • Loading branch information
davvid committed Aug 10, 2018
1 parent ed28ed9 commit da3dd27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtpy/__init__.py
Expand Up @@ -180,6 +180,6 @@ class PythonQtWarning(Warning):
if PYQT4:
import sip
try:
API_NAME += (" (API v%s)" % sip.getapi('QString'))
API_NAME += (" (API v{0})".format(sip.getapi('QString')))
except AttributeError:
pass

0 comments on commit da3dd27

Please sign in to comment.