diff options
author | Yobmod <yobmod@gmail.com> | 2021-06-25 20:27:22 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-06-25 20:27:22 +0100 |
commit | 5b0465c9bcca64c3a863a95735cc5e602946facb (patch) | |
tree | 1486371e777c46ec5ba2e579ee1cd821f60d08e9 | |
parent | 0eae33d324376a0a1800e51bddf7f23a343f45a1 (diff) | |
download | gitpython-5b0465c9bcca64c3a863a95735cc5e602946facb.tar.gz |
fix assert
-rw-r--r-- | git/remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py index 2bf64150..748dcbbd 100644 --- a/git/remote.py +++ b/git/remote.py @@ -332,7 +332,7 @@ class FetchInfo(IterableObj, object): # parse lines control_character, operation, local_remote_ref, remote_local_ref_str, note = match.groups() - assert is_flagKeyLiteral(control_character) + assert is_flagKeyLiteral(control_character), f"{control_character}" try: _new_hex_sha, _fetch_operation, fetch_note = fetch_line.split("\t") |