summaryrefslogtreecommitdiff
path: root/lib/git/remote.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-11-03 20:59:24 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-11-03 21:00:35 +0100
commit43ab2afba68fd0e1b5d138ed99ffc788dc685e36 (patch)
tree2a7281ec51314abe014aa79bd0f760ed7acfbbe7 /lib/git/remote.py
parente648efdcc1ca904709a646c1dbc797454a307444 (diff)
downloadgitpython-43ab2afba68fd0e1b5d138ed99ffc788dc685e36.tar.gz
refs: iter_items now imlemented natively for additional performance. We did not implement the crazy sorting feature found in git-for-each-ref though
Diffstat (limited to 'lib/git/remote.py')
-rw-r--r--lib/git/remote.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/git/remote.py b/lib/git/remote.py
index 1b054253..b4413cce 100644
--- a/lib/git/remote.py
+++ b/lib/git/remote.py
@@ -445,7 +445,6 @@ class Remote(LazyMixin, Iterable):
Iterator yielding Remote objects of the given repository
"""
for section in repo.config_reader("repository").sections():
- print section
if not section.startswith('remote'):
continue
lbound = section.find('"')