From 4beba5df4099ae38346cff5107a932195592373b Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Tue, 12 Mar 2019 22:39:58 -0700 Subject: [PATCH] filter-repo: fix comments in _parse_literal_command Signed-off-by: Elijah Newren --- git-filter-repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-filter-repo b/git-filter-repo index e9727f4..9077d34 100755 --- a/git-filter-repo +++ b/git-filter-repo @@ -1586,13 +1586,13 @@ class FastExportFilter(object): def _parse_literal_command(self): """ - Parse literal command. Just dump the line as is. + Parse literal command. Then just dump the line as is. """ # Create the literal command object command = LiteralCommand(self._currentline) self._advance_currentline() - # Now print the resulting checkpoint + # Now print the resulting literal command if not command.dumped: command.dump(self._output)