Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Update hamlpy_watcher.py
Browse files Browse the repository at this point in the history
Set the seemingly-verbose print statement on line 130 to only fire if verbosity is requested.
  • Loading branch information
ReidLitkauo committed Apr 29, 2020
1 parent 12ad5be commit 8df9a5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hamlpy/hamlpy_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ def _watch_folder(folder, extensions, destination, compiler_args):
total_files = 0
num_failed = 0

print('_watch_folder(%s, %s, %s)' % (folder, repr(extensions), destination))
if Options.VERBOSE:
print('_watch_folder(%s, %s, %s)' % (folder, repr(extensions), destination))

for dirpath, dirnames, filenames in os.walk(folder):
for filename in filenames:
Expand Down

0 comments on commit 8df9a5d

Please sign in to comment.