summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--obnamlib/checksummer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/obnamlib/checksummer.py b/obnamlib/checksummer.py
index c420cf6b..5f138206 100644
--- a/obnamlib/checksummer.py
+++ b/obnamlib/checksummer.py
@@ -30,7 +30,7 @@ _algorithm_list = [
]
-checksum_algorithms = [name for name, _, _ in _algorithm_list]
+checksum_algorithms = [_name for _name, _, _ in _algorithm_list]
def get_checksum_algorithm(wanted):