Skip to content

Commit

Permalink
Whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
etrott committed Sep 21, 2015
1 parent b55e1f2 commit 1c54581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions members/orgchart3.py
Expand Up @@ -47,13 +47,13 @@


# note this leaves garbage in ~/.functioncache that might need to be cleaned
@functioncache(1*60*60) # cache for 1 hour
@functioncache(1 * 60 * 60) # cache for 1 hour
def download(uri, uid=None, user=None, password=None, saveas=None, ssl_verify=False):
'''
FIXME: DOCS...
'''
# FIXME: use a tempfile
saveas = saveas or '/tmp/requests_%s_tmp.csv'%(uid)
saveas = saveas or '/tmp/requests_%s_tmp.csv' % (uid)

if not (user or password):
# Fall back to kerberos auth
Expand Down

0 comments on commit 1c54581

Please sign in to comment.