summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-04 10:39:12 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-04 10:39:12 +0100
commit4228b2cc8e1c9bd080fe48db98a46c21305e1464 (patch)
tree61004084675fabc2398d2878090b1a792acaa9dc /git/refs/log.py
parenta8535d1a2485b4e063ab9ef0a2719a1aab8187d3 (diff)
downloadgitpython-4228b2cc8e1c9bd080fe48db98a46c21305e1464.tar.gz
Another travis debugging commit
Diffstat (limited to 'git/refs/log.py')
-rw-r--r--git/refs/log.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index e0f92fbe..742c9ccd 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -197,8 +197,6 @@ 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: