diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-02 18:32:24 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-12 15:34:03 -0400 |
commit | 27b83f65ac48bfc57a46e8a4b13ec14299f9eedd (patch) | |
tree | bb6be641818f18f6ac8768d3002d58b3afd512f8 | |
parent | 5b633d9cd0557c8a4f72bb83ed1a15a396c46ff0 (diff) | |
download | fatcat-27b83f65ac48bfc57a46e8a4b13ec14299f9eedd.tar.gz fatcat-27b83f65ac48bfc57a46e8a4b13ec14299f9eedd.zip |
fix typo resulting in None for SHA256
-rw-r--r-- | python/fatcat/templates/file_view.html | 2 |
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 %} |