Make pickled cache files dot files.

This commit is contained in:
Russell Bryant 2013-05-28 18:19:13 -04:00
parent 9e8acea84c
commit 74e67bfe52
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def get_changes(projects, ssh_user, ssh_key, only_open=False):
# Only use the cache for *all* changes (the entire history).
# Requesting only the open changes isn't nearly as big of a deal,
# so just get the current data.
pickle_fn = '%s-changes.pickle' % project['name']
pickle_fn = '.%s-changes.pickle' % project['name']
if os.path.isfile(pickle_fn):
mtime = os.stat(pickle_fn).st_mtime