summaryrefslogtreecommitdiff
path: root/lib/git/blob.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/blob.py')
-rw-r--r--lib/git/blob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/blob.py b/lib/git/blob.py
index a6768afb..fd83fe1d 100644
--- a/lib/git/blob.py
+++ b/lib/git/blob.py
@@ -57,7 +57,7 @@ class Blob(object):
Returns
str
"""
- self.data_stored = self.data_stored or self.repo.git.cat_file(self.id, **{'p': True})
+ self.data_stored = self.data_stored or self.repo.git.cat_file(self.id, **{'p': True, 'with_raw_output': True})
return self.data_stored
@property