summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/refs/log.py')
-rw-r--r--git/refs/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index 94e07104..f397548e 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -85,7 +85,7 @@ class RefLogEntry(tuple):
:param line: line without trailing newline
:raise ValueError: If line could not be parsed"""
try:
- info, msg = line.split('\t', 2)
+ info, msg = line.split('\t', 1)
except ValueError:
raise ValueError("line is missing tab separator")
# END handle first plit