diff options
Diffstat (limited to 'git/refs/remote.py')
-rw-r--r-- | git/refs/remote.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/refs/remote.py b/git/refs/remote.py index 394ad9e5..e3827ad9 100644 --- a/git/refs/remote.py +++ b/git/refs/remote.py @@ -26,11 +26,11 @@ class RemoteReference(Head): def delete(cls, repo, *refs, **kwargs): """Delete the given remote references. :note: - kwargs are given for compatability with the base class method as we + kwargs are given for compatability with the base class method as we should not narrow the signature.""" repo.git.branch("-d", "-r", *refs) - # the official deletion method will ignore remote symbolic refs - these - # are generally ignored in the refs/ folder. We don't though + # the official deletion method will ignore remote symbolic refs - these + # are generally ignored in the refs/ folder. We don't though # and delete remainders manually for ref in refs: try: |