From 61840fb9f088ba86135d72db977ceb7748b41dba Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 9 Apr 2012 11:27:22 -0700 Subject: [PATCH] snapdiff: Remove debugging print statement. I assume this print statement is just some leftover from debugging. The output isn't meaningful to the user. --- scripts/snapdiff.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/snapdiff.py b/scripts/snapdiff.py index bf37686..53d9f82 100755 --- a/scripts/snapdiff.py +++ b/scripts/snapdiff.py @@ -130,7 +130,6 @@ def is_image(path): name = os.path.basename(path) name, ext1 = os.path.splitext(name) name, ext2 = os.path.splitext(name) - print name, ext1, ext2 return ext1 in ('.png', '.bmp') and ext2 not in ('.diff', '.thumb') -- 2.43.0