Mercurial > p > roundup > code
diff roundup/templatebuilder.py @ 139:16fdc86183fe
Hrm - had IOError instead of OSError. Not sure why there's two. Ho hum.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 30 Jul 2001 00:06:52 +0000 |
| parents | 0791d13baea7 |
| children | a49c8a2ddd26 |
line wrap: on
line diff
--- a/roundup/templatebuilder.py Mon Jul 30 00:05:54 2001 +0000 +++ b/roundup/templatebuilder.py Mon Jul 30 00:06:52 2001 +0000 @@ -1,4 +1,4 @@ -# $Id: templatebuilder.py,v 1.6 2001-07-29 07:01:39 richard Exp $ +# $Id: templatebuilder.py,v 1.7 2001-07-30 00:06:52 richard Exp $ import errno preamble = """ @@ -38,7 +38,7 @@ installDir = os.path.join(installDir, 'html') try: os.makedirs(installDir) - except IOError, error: + except OSError, error: if error.errno != errno.EEXIST: raise # print "installing from", htmlbase.__file__, "into", installDir @@ -65,6 +65,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.6 2001/07/29 07:01:39 richard +# Added vim command to all source so that we don't get no steenkin' tabs :) +# # # # vim: set filetype=python ts=4 sw=4 et si
