diff options
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/collect.py | 2 | ||||
-rwxr-xr-x | wqflask/wqflask/templates/index_page_orig.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/wqflask/wqflask/collect.py b/wqflask/wqflask/collect.py index 22d3f7ee..73269c4d 100644 --- a/wqflask/wqflask/collect.py +++ b/wqflask/wqflask/collect.py @@ -53,7 +53,7 @@ class AnonCollection(object): #ZS: Find id and set it if the collection doesn't already exist if Redis.get(self.key) == "None" or Redis.get(self.key) == None: - Redis.set(self.key, None) #ZS: For some reason I get the error "Operation against a key holding the wrong kind of value" if I don't do this + Redis.set(self.key, "None") #ZS: For some reason I get the error "Operation against a key holding the wrong kind of value" if I don't do this else: collections_list = json.loads(Redis.get(self.key)) collection_position = 0 #ZS: Position of collection in collection_list, if it exists diff --git a/wqflask/wqflask/templates/index_page_orig.html b/wqflask/wqflask/templates/index_page_orig.html index 108c87ed..7d5cd95b 100755 --- a/wqflask/wqflask/templates/index_page_orig.html +++ b/wqflask/wqflask/templates/index_page_orig.html @@ -188,12 +188,12 @@ <div class="page-header"> <h1>Affiliates</h1> <ul> - <li><a href="http://ucscbrowser.genenetwork.org/">Genome Browser</a> @ UTHSC</li> - <li><a href="https://systems-genetics.org/">Systems Genetics</a> @ EPFL</li> - <li><a href="http://bnw.genenetwork.org/">Bayesian Network Web Server</a> @ UTHSC</li> - <li><a href="http://genenetwork.org">GeneNetwork 1</a> @ UTHSC</li> + <li><a href="http://ucscbrowser.genenetwork.org/">Genome Browser</a> at UTHSC</li> + <li><a href="https://systems-genetics.org/">Systems Genetics</a> at EPFL</li> + <li><a href="http://bnw.genenetwork.org/">Bayesian Network Web Server</a> at UTHSC</li> + <li><a href="http://genenetwork.org">GeneNetwork 1</a> at UTHSC</li> <li><a href="https://www.geneweaver.org/">GeneWeaver</a></li> - <li><a href="http://www.webgestalt.org/">WebGestalt</a> @ Baylor</li> + <li><a href="http://www.webgestalt.org/">WebGestalt</a> at Baylor</li> </ul> </div> </section> |