]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

[FIX] migrate-black.py: don't fail on binary files (#3266)
authorHolger Brunn <mail@hunki-enterprises.com>
Wed, 14 Sep 2022 03:06:54 +0000 (05:06 +0200)
committerGitHub <noreply@github.com>
Wed, 14 Sep 2022 03:06:54 +0000 (20:06 -0700)
scripts/migrate-black.py

index 63cc5096a939ebecbbc35d6dc2ed5981a86495b5..ff52939460ccc26e7f851720acf75600cea71641 100755 (executable)
@@ -49,6 +49,7 @@ def blackify(base_branch: str, black_command: str, logger: logging.Logger) -> in
             [
                 "git",
                 "diff",
+                "--binary",
                 "--find-copies",
                 "%s-black..%s-black" % (last_commit, commit),
             ],