bug fix
This commit is contained in:
parent
df7b6126c7
commit
9960682d98
|
@ -74,6 +74,15 @@ def meta(config) :
|
|||
"""
|
||||
_info = []
|
||||
table_count = 1
|
||||
cached = {}
|
||||
for prefix in config :
|
||||
if 'cache' in config[prefix] :
|
||||
_cache = config[prefix]['cache']
|
||||
field = _cache['field']
|
||||
key = _cache['key']
|
||||
if 'map' in config[key]:
|
||||
config[key]['map'][field] = -100
|
||||
|
||||
for prefix in config :
|
||||
# if 'map' in config[prefix] :
|
||||
# label = list(set(['label','field']) & set(config[prefix].keys()))
|
||||
|
|
2
setup.py
2
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.6.3.1",
|
||||
"name":"healthcareio","version":"1.6.3.2",
|
||||
"author":"Vanderbilt University Medical Center",
|
||||
"author_email":"steve.l.nyemba@vumc.org",
|
||||
"include_package_data":True,
|
||||
|
|
Loading…
Reference in New Issue