Skip to content

Commit dec8f7e

Browse files
Merge pull request #657 from Crozzers/invalid-sandbox-path
Fix invalid import path in sandbox wiki example (#656)
2 parents 8c74601 + 767412a commit dec8f7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sandbox/wiki.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sys
22
import re
3-
from os.path import *
3+
from os.path import dirname, abspath
44

5-
sys.path.insert(0, dirname(dirname(abspath(__file__))))
5+
sys.path.insert(0, dirname(dirname(abspath(__file__))) + '/lib')
66
import markdown2
77

88
wiki_page = """

0 commit comments

Comments
 (0)