*** empty log message ***

svn path=/trunk/boinc/; revision=3564
This commit is contained in:
Rom Walton 2004-06-14 01:51:04 +00:00
parent 5a24e46a52
commit 80ecf2632d
2 changed files with 12 additions and 3 deletions

View File

@ -13470,4 +13470,12 @@ Rom 13 June 2004
stdafx.h
lib/
base64.C, .h
util.C
util.C
Rom 13 June 2004
- Minor tweaks so you can setup a new project
py/Boinc/
setup_project.py
sched/
start

View File

@ -207,8 +207,9 @@ def safe_unlink(filename):
def remove_cached_home_page():
path = os.path.join(project_dir, 'html/cache/index.php')
print 'removing '+path
safe_unlink(path)
if os.path.exists(path):
print 'removing ' + path
safe_unlink(path)
def redirect(stdout='/dev/null', stderr=None, stdin='/dev/null'):
'''