diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-06-17 13:55:23 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-06-17 13:55:23 +0200 |
commit | 92b7e8a3b1adf8ef2b989742a634d429c1577f16 (patch) | |
tree | a87d7c57ecbe2bba3e527039e7375ab772a42dd6 /python3/sha3sum.py | |
parent | change defaults (conflicts with Wikipedia but is based on official Keccak defaults; no defaults have yet been standardised) (diff) | |
download | sha3sum-92b7e8a3b1adf8ef2b989742a634d429c1577f16.tar.gz sha3sum-92b7e8a3b1adf8ef2b989742a634d429c1577f16.tar.bz2 sha3sum-92b7e8a3b1adf8ef2b989742a634d429c1577f16.tar.xz |
in shebang change python to python3 so that is will run on python3 of distributions that do not have python3 as default
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'python3/sha3sum.py')
-rwxr-xr-x | python3/sha3sum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python3/sha3sum.py b/python3/sha3sum.py index d388f1f..84fedeb 100755 --- a/python3/sha3sum.py +++ b/python3/sha3sum.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- ''' sha3sum – SHA-3 (Keccak) checksum calculator |