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.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index e3f3363c..94e07104 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -17,6 +17,10 @@ from git.objects.util import (
Serializable,
altz_to_utctz_str,
)
+from git.compat import (
+ xrange,
+ string_types
+)
import time
import re
@@ -170,7 +174,7 @@ class RefLog(list, Serializable):
:param stream: file-like object containing the revlog in its native format
or basestring instance pointing to a file to read"""
new_entry = RefLogEntry.from_line
- if isinstance(stream, basestring):
+ if isinstance(stream, string_types):
stream = file_contents_ro_filepath(stream)
# END handle stream type
while True: