Skip to content

Commit

Permalink
Merge pull request #8301 from elpaso/bugfix-fix-sip-python-3-5
Browse files Browse the repository at this point in the history
Fix import sip on python 3.5
  • Loading branch information
elpaso committed Oct 24, 2018
2 parents 3abbaee + 6c218b8 commit 0e5627c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/PyQt/PyQt5/sip.py
Expand Up @@ -25,5 +25,5 @@

try:
from PyQt5.sip import *
except ModuleNotFoundError:
except ImportError:
from sip import *

0 comments on commit 0e5627c

Please sign in to comment.