aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-10-02 18:32:24 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-10-12 15:34:03 -0400
commit27b83f65ac48bfc57a46e8a4b13ec14299f9eedd (patch)
treebb6be641818f18f6ac8768d3002d58b3afd512f8 /python
parent5b633d9cd0557c8a4f72bb83ed1a15a396c46ff0 (diff)
downloadfatcat-27b83f65ac48bfc57a46e8a4b13ec14299f9eedd.tar.gz
fatcat-27b83f65ac48bfc57a46e8a4b13ec14299f9eedd.zip
fix typo resulting in None for SHA256
Diffstat (limited to 'python')
-rw-r--r--python/fatcat/templates/file_view.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/templates/file_view.html b/python/fatcat/templates/file_view.html
index 70ce8771..74977668 100644
--- a/python/fatcat/templates/file_view.html
+++ b/python/fatcat/templates/file_view.html
@@ -54,7 +54,7 @@ No known public URL, mirror, or archive for this file.
<tr><td>SHA-1
<td><small><code>{{ file.sha1 }}</code></small>
{% endif %}
- {% if file.sha1 != None %}
+ {% if file.sha256 != None %}
<tr><td>SHA-256
<td><small><code>{{ file.sha256 }}</code></small>
{% endif %}