Skip to content

Commit 7fbf9eb

Browse files
Fix import error for 'pymode.libs.six'
1 parent f61b74a commit 7fbf9eb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

autoload/pymode/breakpoint.vim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ fun! pymode#breakpoint#init() "{{{
99

1010
PymodePython << EOF
1111

12-
from pymode.libs.six import PY3
12+
try:
13+
from pymode.libs.six import PY3
14+
except ImportError:
15+
PY3 = False
1316

1417
if PY3:
1518
from importlib.util import find_spec

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy