From 6a36287926105efcf47998ef3e5150f2a1989204 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Sat, 8 Feb 2025 08:22:37 -0500 Subject: [PATCH] Fix typo --- src/git_remote_dropbox/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_remote_dropbox/helper.py b/src/git_remote_dropbox/helper.py index f1d7738..2a83231 100644 --- a/src/git_remote_dropbox/helper.py +++ b/src/git_remote_dropbox/helper.py @@ -150,7 +150,7 @@ def _do_push(self, line: str) -> None: self._delete(dst) else: self._push(src, dst) - if self._first_push and (not remote_head or src == git.symbolic_ref("HEAD")): + if self._first_push and (not remote_head or src == git.symbolic_ref_value("HEAD")): remote_head = dst line = readline() if line == "":