Fix indentation style

This commit is contained in:
J. David Ibáñez 2015-04-03 09:19:29 +02:00
parent 08f2956e97
commit 1f755c601c

@ -381,12 +381,12 @@ class Repository(_Repository):
try:
obj = obj.peel(Blob)
except Exception:
# And if that failed, try to get a tree, raising a type
# error if that still doesn't work
try:
obj = obj.peel(Tree)
except Exception:
raise TypeError('unexpected "%s"' % type(obj))
# And if that failed, try to get a tree, raising a type
# error if that still doesn't work
try:
obj = obj.peel(Tree)
except Exception:
raise TypeError('unexpected "%s"' % type(obj))
return obj