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

@ -63,8 +63,6 @@ else:
def get_file(path):
parts = path.split('/')
independent_path = utils.path_join(CWD, *parts)
if utils.is_windows() and os.path.isabs(independent_path):
independent_path = u'//?/' + independent_path
return independent_path
__version__ = "v0.0.0"