summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-03-17 20:18:28 +0200
committerLars Wirzenius <liw@liw.fi>2016-03-17 20:57:42 +0200
commit080e11b84d7f833e889c77dff1a47eda9d8bd637 (patch)
tree5e6d811aefb476e19d7102a96c31ba13486bbe50
parentc7eaf7aca201e01f105c177e15e39845b8227a22 (diff)
downloadobnam-080e11b84d7f833e889c77dff1a47eda9d8bd637.tar.gz
Use underscored name to hide global symbol
-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):