Skip to content

Commit ec8c5a8

Browse files
CzarekCzarek
authored andcommitted
Fixed the cefpython3 import in the wxpython.py script.
1 parent 20a670d commit ec8c5a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cefpython/cef3/linux/binaries_32bit/wxpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
raise Exception("Unsupported python version: %s" % sys.version)
1212
else:
1313
# Import from package
14-
from cefpython1 import cefpython
14+
from cefpython3 import cefpython
1515

1616
import wx
1717
import time

cefpython/cef3/linux/binaries_64bit/wxpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
raise Exception("Unsupported python version: %s" % sys.version)
1212
else:
1313
# Import from package
14-
from cefpython1 import cefpython
14+
from cefpython3 import cefpython
1515

1616
import wx
1717
import time

0 commit comments

Comments
 (0)