From ff4e01fca3acb192b2935b94bc09bc12006f247e Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 23 Nov 2013 15:54:52 -0500 Subject: [PATCH] fix another pychecker warning that was actually pointing out a bug --- morituri/rip/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morituri/rip/debug.py b/morituri/rip/debug.py index 47aa230..678e64b 100644 --- a/morituri/rip/debug.py +++ b/morituri/rip/debug.py @@ -126,7 +126,7 @@ class Checksum(logcommand.LogCommand): from morituri.common import checksum for arg in args: - fromPath = unicode(args[0]) + fromPath = unicode(arg) checksumtask = checksum.CRC32Task(fromPath)