Fixed an annoying path in Windows paths...

This commit is contained in:
acepace 2016-06-07 18:14:38 +03:00
parent f9f062ec0d
commit a004a757ec
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ __author__ = 'itamar'
GUID = str(uuid.getnode())
EXTERNAL_CONFIG_FILE = os.path.join(os.path.dirname(sys.argv[0]), 'monkey.bin')
EXTERNAL_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(sys.argv[0])), 'monkey.bin')
def _cast_by_example(value, example):