diff options
Diffstat (limited to 'git/refs/log.py')
-rw-r--r-- | git/refs/log.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git/refs/log.py b/git/refs/log.py index 742c9ccd..e0f92fbe 100644 --- a/git/refs/log.py +++ b/git/refs/log.py @@ -197,6 +197,8 @@ class RefLog(list, Serializable): the index is negative """ fp = open(filepath, 'rb') + # DEBUG + print filepath if index < 0: return RefLogEntry.from_line(fp.readlines()[index].strip()) else: |