Remove extraneous print call in tutorial example

This commit is contained in:
Brian Visel 2016-06-09 07:46:37 -04:00
parent 5fb5b0151c
commit c604613c44

View file

@ -389,7 +389,6 @@ output in an except clause. Examples of each:
if not line.strip():
continue
filename = line.split('grep: ', 1)[1].rsplit(':', 1)[0]
print(filename)
failures.append(filename)
return {'matches': matches, 'failures': failures}