Skip to content

Commit

Permalink
Use logger instead of print (also doesn't work with Python3)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Hozza <thozza@redhat.com>
  • Loading branch information
thozza committed Mar 2, 2015
1 parent 0923c17 commit 262de26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebasehelper/patch_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _git_rebase(cls):
else:
logger.info('Rebase operation continues...')
ret_code, cls.output_data = cls.git_helper.command_rebase(parameters='--skip')
print cls.output_data
logger.debug(cls.output_data)
patch_name = ""
modified_patches = []
deleted_patches = []
Expand Down

0 comments on commit 262de26

Please sign in to comment.