diff options
Diffstat (limited to 'git/refs')
-rw-r--r-- | git/refs/symbolic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py index a8ca6538..766037c1 100644 --- a/git/refs/symbolic.py +++ b/git/refs/symbolic.py @@ -614,7 +614,7 @@ class SymbolicReference(object): # END for each directory to walk # read packed refs - for sha, rela_path in cls._iter_packed_refs(repo): # @UnusedVariable + for _sha, rela_path in cls._iter_packed_refs(repo): if rela_path.startswith(common_path): rela_paths.add(rela_path) # END relative path matches common path |