Commit bddadc95 by James Cammarata

Fix bug in relative path determination

parent 38c5da9d
......@@ -211,12 +211,12 @@ class DataLoader():
if os.path.exists(source2):
self.set_basedir(cur_basedir)
return source2
self.set_basedir(cur_basedir)
obvious_local_path = self.path_dwim(source)
if os.path.exists(obvious_local_path):
self.set_basedir(cur_basedir)
#self.set_basedir(cur_basedir)
return obvious_local_path
self.set_basedir(cur_basedir)
return source2 # which does not exist
return source2
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment