diff options
| author | Nick Mathewson <nickm@torproject.org> | 2008-06-28 02:38:33 +0000 |
|---|---|---|
| committer | Nick Mathewson <nickm@torproject.org> | 2008-06-28 02:38:33 +0000 |
| commit | 7e5e2fc5dbff029a0420fb73f5038047d9f7c1c0 (patch) | |
| tree | 2bceaa1a57d66332b23f658891abcd2be44da460 /rank.py | |
| parent | 4e069eb0cceb83e932f86374cd46a549b56a7766 (diff) | |
| download | anonbib-7e5e2fc5dbff029a0420fb73f5038047d9f7c1c0.tar.gz | |
Make cache-file umask configurable.
svn:r286
Diffstat (limited to 'rank.py')
| -rw-r--r-- | rank.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -125,6 +125,8 @@ if __name__ == '__main__': # First download the bibliography file. import BibTeX config.load(sys.argv[1]) + if config.CACHE_UMASK != None: + os.umask(config.CACHE_UMASK) bib = BibTeX.parseFile(config.MASTER_BIB) remove_old() print "Downloading missing ranks." |
