Mercurial > p > roundup > code
diff demo.py @ 1727:63c770644afa
oops
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 28 Jul 2003 23:17:50 +0000 |
| parents | 016e63bb9481 |
| children | 1545a36ae887 f29a7edc31da |
line wrap: on
line diff
--- a/demo.py Sun Jul 27 23:16:33 2003 +0000 +++ b/demo.py Mon Jul 28 23:17:50 2003 +0000 @@ -2,7 +2,7 @@ # # Copyright (c) 2003 Richard Jones (richard@mechanicalcat.net) # -# $Id: demo.py,v 1.4 2003-07-27 23:16:33 richard Exp $ +# $Id: demo.py,v 1.5 2003-07-28 23:17:50 richard Exp $ import sys, os, string, re, urlparse import shutil, socket, errno, BaseHTTPServer @@ -16,7 +16,11 @@ init.install(home, os.path.join('templates', 'classic')) # don't have email flying around os.remove(os.path.join(home, 'detectors', 'nosyreaction.py')) - os.remove(os.path.join(home, 'detectors', 'nosyreaction.pyc')) + try: + os.remove(os.path.join(home, 'detectors', 'nosyreaction.pyc')) + except os.error, error: + if error.errno != errno.ENOENT: + raise init.write_select_db(home, 'anydbm') # figure basic params for server
