*** empty log message ***

svn path=/trunk/boinc/; revision=4947
This commit is contained in:
David Anderson 2004-12-27 22:49:25 +00:00
parent c60fb03c27
commit 6f66c759c8
2 changed files with 8 additions and 2 deletions

View File

@ -21878,3 +21878,9 @@ David 27 Dec 2004
uotd.inc
sched/
db_purge.C
David 27 Dec 2004
- upgrade --help now works
tools/
upgrade

View File

@ -26,8 +26,8 @@ def syntax_error(str):
raise SystemExit('%s; See "%s --help" for help\n' % (str, sys.argv[0]))
try:
opts, args = getopt.getopt(sys.argv[1:], ['help', 'project_root='])
except getopt.GetopError, e:
opts, args = getopt.getopt(sys.argv[1:], '', ['help', 'project_root='])
except getopt.GetoptError, e:
syntax_error(e)
home = os.path.expanduser('~')