bug fix
This commit is contained in:
parent
df7b6126c7
commit
9960682d98
|
@ -74,6 +74,15 @@ def meta(config) :
|
||||||
"""
|
"""
|
||||||
_info = []
|
_info = []
|
||||||
table_count = 1
|
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 :
|
for prefix in config :
|
||||||
# if 'map' in config[prefix] :
|
# if 'map' in config[prefix] :
|
||||||
# label = list(set(['label','field']) & set(config[prefix].keys()))
|
# label = list(set(['label','field']) & set(config[prefix].keys()))
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ import sys
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
args = {
|
args = {
|
||||||
"name":"healthcareio","version":"1.6.3.1",
|
"name":"healthcareio","version":"1.6.3.2",
|
||||||
"author":"Vanderbilt University Medical Center",
|
"author":"Vanderbilt University Medical Center",
|
||||||
"author_email":"steve.l.nyemba@vumc.org",
|
"author_email":"steve.l.nyemba@vumc.org",
|
||||||
"include_package_data":True,
|
"include_package_data":True,
|
||||||
|
|
Loading…
Reference in New Issue