From 181136305cfffe06ddd43cc87908a058b7418730 Mon Sep 17 00:00:00 2001 From: Alexander Georgievskiy Date: Thu, 15 Jun 2023 11:08:50 +0300 Subject: [PATCH] [demos/lint-history] Fix single quotes in single quotes Signed-off-by: Alexander Georgievskiy --- contrib/filter-repo-demos/lint-history | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/filter-repo-demos/lint-history b/contrib/filter-repo-demos/lint-history index 61967b7..334b3e8 100755 --- a/contrib/filter-repo-demos/lint-history +++ b/contrib/filter-repo-demos/lint-history @@ -31,7 +31,7 @@ near the top of git-filter-repo. # about filenames, then this program could be replaced by a "one-liner"; e.g. # git filter-repo --force --blob-callback ' # if not b"\0" in blob.data[0:8192]: -# filename = '.git/info/tmpfile' +# filename = ".git/info/tmpfile" # with open(filename, "wb") as f: # f.write(blob.data) # subprocess.check_call(["lint_program", "--some", "arg", filename])