Skip to content

Commit 67049e7

Browse files
committed
remove console output
1 parent 8afbc81 commit 67049e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pptag.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,15 @@ def updateTagsAndRating(key, filename):
117117
try:
118118
img_file = open(str(filename), 'rb')
119119
except IOError:
120-
print("'%s' is unreadable" % filename)
120+
#print("'%s' is unreadable" % filename)
121121
return
122122

123123
try:
124124
# get the tags
125125
data = process_file(img_file, stop_tag=stop_tag, details=detailed, strict=strict, debug=debug)
126126

127127
if not data:
128-
print("No EXIF information found\n")
128+
#print("No EXIF information found\n")
129129
return
130130

131131
if 'JPEGThumbnail' in data:

0 commit comments

Comments
 (0)