Skip to content

Commit 767412a

Browse files
committed
Fix #656
1 parent 8c74601 commit 767412a

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)