mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 21:42:05 +08:00
fix filereader cd:/ replacement
This commit is contained in:
@@ -5,7 +5,7 @@ DATA_PREFIX = os.getenv("DATA_PREFIX", "http://data-raw.internal/")
|
||||
|
||||
def FileReader(fn, debug=False):
|
||||
if fn.startswith("cd:/"):
|
||||
fn.replace("cd:/", DATA_PREFIX)
|
||||
fn = fn.replace("cd:/", DATA_PREFIX)
|
||||
if fn.startswith("http://") or fn.startswith("https://"):
|
||||
return URLFile(fn, debug=debug)
|
||||
return open(fn, "rb")
|
||||
|
||||
Reference in New Issue
Block a user