summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJed Brown <jed@59A2.org>2014-03-12 11:54:20 -0600
committerJed Brown <jed@59A2.org>2014-03-12 11:54:20 -0600
commit817c2b0a91d83be9ba43b9f796f78ad535142d00 (patch)
tree210b1b8dbe8ab6222cc8ac67db09db5719c84668
parent799aeb891580fcecc9ad5460120a476a9b1f956f (diff)
downloadgit-fat-817c2b0a91d83be9ba43b9f796f78ad535142d00.tar.gz
filter_objects: remove printing that doesn't belong in internal functions
-rwxr-xr-xgit-fat2
1 files changed, 0 insertions, 2 deletions
diff --git a/git-fat b/git-fat
index 484ebcd..9d61cae 100755
--- a/git-fat
+++ b/git-fat
@@ -390,8 +390,6 @@ class GitFat(object):
def filter_objects(self, refargs, patterns):
files = self.referenced_objects(**refargs) - self.catalog_objects()
orphans_matched = list(self.orphan_files(patterns))
- print("pulling:")
- print(map(lambda x: x[1], orphans_matched))
orphans_objects = set(map(lambda x: x[0], orphans_matched))
return files & orphans_objects