append to sys.path on the front
This commit is contained in:
parent
126198621b
commit
72e44747a1
1 changed files with 3 additions and 3 deletions
6
wnf.py
6
wnf.py
|
|
@ -296,9 +296,9 @@ def setup_options():
|
|||
return parser.parse_args()
|
||||
|
||||
def run():
|
||||
sys.path.append('.')
|
||||
sys.path.append('lib')
|
||||
sys.path.append('app')
|
||||
sys.path.insert(0, '.')
|
||||
sys.path.insert(0, 'lib')
|
||||
sys.path.insert(0, 'app')
|
||||
|
||||
(options, args) = setup_options()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue