Fixed some issues with path loading and Windows.

This commit is contained in:
Joey Payne 2016-01-07 08:03:09 -07:00
commit fddc010260
3 changed files with 1 additions and 5 deletions

View file

@ -51,8 +51,6 @@ def get_data_path(dir_path):
def get_data_file_path(file_path):
parts = file_path.split('/')
data_path = get_data_path('/'.join(parts[:-1]))
if is_windows() and os.path.isabs(data_path):
data_path = u'//?/' + data_path
return path_join(data_path, parts[-1])
def log(*args):