Skip to content

Commit

Permalink
Remove extraneous print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed Aug 31, 2015
1 parent 14699fc commit 0218d41
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions agate/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,8 @@ def _cleanup_cache_files(self):
Deletes any cache files that exist in the cache directory which were
not used when this analysis was last run.
"""
print self._registered_cache_paths

for path in glob(os.path.join(self._cache_dir, '*.cache')):
print path
if path not in self._registered_cache_paths:
print 'Deleting ', path
os.remove(path)

@memoize
Expand Down

0 comments on commit 0218d41

Please sign in to comment.