Skip to content

Commit

Permalink
Actually remember to wrap returned objects
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Brockman committed May 28, 2010
1 parent 0a85608 commit fa788d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anygit/client/git_parser.py
Expand Up @@ -47,7 +47,7 @@ def iterobjects(self):
stdout=subprocess.PIPE)
return parse(p.stdout)
else:
return self.uncompressed_pack.iterobjects()
return (wrap_dulwich_object(obj) for obj in self.uncompressed_pack.iterobjects())

def wrap_dulwich_object(obj):
try:
Expand Down

0 comments on commit fa788d0

Please sign in to comment.