diff options
author | zsloan | 2020-04-23 13:07:26 -0500 |
---|---|---|
committer | zsloan | 2020-04-23 13:07:26 -0500 |
commit | 3409cba77edf79f0f2e088b07a17f3b6df33a445 (patch) | |
tree | 361e54781953cde93ca9e448ecf506e88fe67f67 | |
parent | fff25327eafcb06d77cff8e8f925a9ab4b9e0796 (diff) | |
download | genenetwork2-3409cba77edf79f0f2e088b07a17f3b6df33a445.tar.gz |
Removed a line that was excluding Macaque from the drop-downs (and thus from the JSON file causing an error in the global search)
-rw-r--r-- | wqflask/wqflask/api/gen_menu.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/wqflask/api/gen_menu.py b/wqflask/wqflask/api/gen_menu.py index 7d2d243c..64a413c2 100644 --- a/wqflask/wqflask/api/gen_menu.py +++ b/wqflask/wqflask/api/gen_menu.py @@ -47,7 +47,6 @@ def get_species(): """Build species list""" results = g.db.execute("""SELECT Name, MenuName FROM Species - WHERE Species.Name != 'macaque monkey' ORDER BY OrderId""").fetchall() species = [] |