Skip to content

Commit

Permalink
Merge pull request #118 from ankurdave/master
Browse files Browse the repository at this point in the history
Log user filters instead of printing
  • Loading branch information
GuillaumeSeren committed Apr 26, 2017
2 parents cacf4b4 + 56b869c commit 6f4244e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afew/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def main():
# py2.7 compat hack
glob_pattern = b'*.py' if sys.version_info[0] == 2 else '*.py'
for file_name in glob.glob1(user_config_dir, glob_pattern):
print('Importing user filter %r' % (file_name, ))
logging.info('Importing user filter %r' % (file_name, ))
__import__(file_name[:-3], level=0)

if args.move_mails:
Expand Down

0 comments on commit 6f4244e

Please sign in to comment.