diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-02 18:32:24 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-10-02 18:32:24 -0700 |
commit | 9623cd35e5342f8ec9b6052261f4d0bc3094dedc (patch) | |
tree | 085c31758411683226888a0fb7d54ef1eb60a737 | |
parent | edcd8eaa6282fda00a0e37f4c82a96e2b2f1b0fa (diff) | |
download | fatcat-9623cd35e5342f8ec9b6052261f4d0bc3094dedc.tar.gz fatcat-9623cd35e5342f8ec9b6052261f4d0bc3094dedc.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 ff08de83..39ff6eda 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 %} |