Skip to content

Commit

Permalink
Remove random print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mbacchi committed Jul 14, 2019
1 parent 82d809b commit 7b98d24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gitsecrets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.1'
__version__ = '0.1.2'

import os
import re
Expand Down Expand Up @@ -66,7 +66,6 @@ def scan_file(self, path):
def scan_recursively(self, path):
for root, dirs, files in os.walk(path):
if "venv" not in root and '.git' not in root:
print(root)
for f in files:
# print("SCANNING: {}".format(root + '/' + f)) # DEBUG
if self.scan_file(root + '/' + f):
Expand Down

0 comments on commit 7b98d24

Please sign in to comment.