StarsDB: replace all \\ with / in filepaths
while / works on unix/linux/windows with python, \\ (aka \) only works on windows
This commit is contained in:
@@ -130,7 +130,7 @@ class StarDB():
|
||||
self.insertStarInformations(mainName, spType, rotVel, rotVelUnit,
|
||||
dist, distUnit)
|
||||
for pm in productManifest:
|
||||
file = pm["Local Path"]
|
||||
file = pm["Local Path"].replace("\\", "/")
|
||||
source = pm["source"]
|
||||
sequence = pm["sector"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user