Skip to content

Commit 6c218b8

Browse files
committedOct 24, 2018
Fix import sip on python 3.5
1 parent b9c1440 commit 6c218b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/PyQt/PyQt5/sip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525

2626
try:
2727
from PyQt5.sip import *
28-
except ModuleNotFoundError:
28+
except ImportError:
2929
from sip import *

0 commit comments

Comments
 (0)
Please sign in to comment.