[Docstring-checkins] CVS: dps/dps utils.py,1.3,1.4
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2001-09-08 03:21:04
|
Update of /cvsroot/docstring/dps/dps In directory usw-pr-cvs1:/tmp/cvs-serv16379/dps/dps Modified Files: utils.py Log Message: - Fixed integer attribute bug on system_warning. Index: utils.py =================================================================== RCS file: /cvsroot/docstring/dps/dps/utils.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** utils.py 2001/09/07 02:03:14 1.3 --- utils.py 2001/09/08 03:20:58 1.4 *************** *** 33,37 **** Raise an exception or generate a warning if appropriate. """ ! sw = nodes.system_warning(comment, level=level, *children) if level >= self.errorlevel: raise SystemWarning(sw) --- 33,37 ---- Raise an exception or generate a warning if appropriate. """ ! sw = nodes.system_warning(comment, level=str(level), *children) if level >= self.errorlevel: raise SystemWarning(sw) |