about summary refs log tree commit diff
path: root/gn2
diff options
context:
space:
mode:
Diffstat (limited to 'gn2')
-rw-r--r--gn2/wqflask/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn2/wqflask/views.py b/gn2/wqflask/views.py
index 9346c22b..6e8ef0ba 100644
--- a/gn2/wqflask/views.py
+++ b/gn2/wqflask/views.py
@@ -1223,7 +1223,7 @@ def display_diffs_users():
 @app.route("/genewiki/<symbol>")
 def display_genewiki_page(symbol):
     """Fetch GeneRIF metadata from GN3 and display it"""
-    entries = requests.get(
+    wiki = requests.get(
         urljoin(
             GN3_LOCAL_URL,
             f"/api/metadata/genewiki/{symbol}"
@@ -1232,7 +1232,7 @@ def display_genewiki_page(symbol):
     return render_template(
         "genewiki.html",
         symbol=symbol,
-        entries=entries
+        wiki=wiki
     )