From ae0f768ec5f20c90147ab8f9a7cee86ff57795e5 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Mon, 18 Jan 2021 11:33:08 -0600 Subject: [PATCH] bug fix: custom folders --- healthcareio/export/export.py | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/healthcareio/export/export.py b/healthcareio/export/export.py index fbac35b..799b044 100644 --- a/healthcareio/export/export.py +++ b/healthcareio/export/export.py @@ -44,10 +44,10 @@ STORE_URI = 'http://healthcareio.the-phi.com/store/healthcareio' PATH = os.sep.join([os.environ.get('HOME'),'.healthcareio','custom']) CONFIG = {} CUSTOM_CONFIG = {} -if os.path.exists(PATH) and os.listdir(PATH) : - CONFIG = json.loads((open(PATH)).read()) - PATH = os.sep.join([PATH,os.listdir(PATH)[0]]) - CUSTOM_CONFIG = json.loads((open(PATH)).read()) +# if os.path.exists(PATH) and os.listdir(PATH) : +# CONFIG = json.loads((open(PATH)).read()) +# PATH = os.sep.join([PATH,os.listdir(PATH)[0]]) +# CUSTOM_CONFIG = json.loads((open(PATH)).read()) # _args = dict(CONFIG['store'],**{'type':'mongo.MongoReader'}) diff --git a/setup.py b/setup.py index 9029d8b..292e8d4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() args = { - "name":"healthcareio","version":"1.5.0", + "name":"healthcareio","version":"1.5.1", "author":"Vanderbilt University Medical Center", "author_email":"steve.l.nyemba@vumc.org", "include_package_data":True,