Skip to content

Commit

Permalink
filereader better name for cd:/ replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
gregjhogan committed Jan 14, 2022
1 parent df35ebd commit a6b46c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/lib/filereader.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import os
from tools.lib.url_file import URLFile

DATA_PREFIX = os.getenv("DATA_PREFIX", "http://data-raw.internal/")
DATA_ENDPOINT = os.getenv("DATA_ENDPOINT", "http://data-raw.internal/")

def FileReader(fn, debug=False):
if fn.startswith("cd:/"):
fn = fn.replace("cd:/", DATA_PREFIX)
fn = fn.replace("cd:/", DATA_ENDPOINT)
if fn.startswith("http://") or fn.startswith("https://"):
return URLFile(fn, debug=debug)
return open(fn, "rb")

0 comments on commit a6b46c3

Please sign in to comment.