From b154c79ece1852edbaef13ff8cadaa277165661e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Thu, 7 May 2020 13:16:26 +0200 Subject: [PATCH] Remove debug output --- patch2vimedit/vim_session.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/patch2vimedit/vim_session.py b/patch2vimedit/vim_session.py index e157397..f535752 100644 --- a/patch2vimedit/vim_session.py +++ b/patch2vimedit/vim_session.py @@ -20,17 +20,12 @@ class VimSession: self.file_path = file_path def apply_patchset(self, patchset): - print("Applying patchset…", file=sys.stderr) for patch in patchset: - print("Asking to apply patch…", file=sys.stderr) self.apply_patch(patch) def apply_patch(self, patch): source = patch.source.decode("utf8") target = patch.target.decode("utf8") - print( - "Applying patch on {} -> {}.".format(source, target), file=sys.stderr, - ) if source != target: self.tmux_session.type_keys( "escape", ":!mv ", source, " ", target, "enter",