Skip to content

Commit 1192cb8

Browse files
committed
Use the right variable in this loop
This was broken accidentally in b2a4f4f.
1 parent 2b3cbbd commit 1192cb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_lightweight_queue/management/commands/queue_configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ def handle(self, **options: Any) -> None:
5454
'timeout',
5555
'sigkill_on_stop',
5656
):
57-
print("{:20s}: {}".format(key, config.get(k, '-')))
57+
print("{:20s}: {}".format(key, config.get(key, '-')))

0 commit comments

Comments
 (0)