tools/mpy-tool: Make work if run from another directory.

By making sure we don't add relative paths to sys.path.
This commit is contained in:
Paul Sokolovsky 2017-05-01 00:01:30 +03:00
parent db9c2e310e
commit 473e85e2da
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ import sys
import struct
from collections import namedtuple
sys.path.append('../py')
sys.path.append(sys.path[0] + '/../py')
import makeqstrdata as qstrutil
class FreezeError(Exception):