Issue 527416
Created on 2002-03-08 15:21 by lannert, last changed 2002-03-08 15:21 by lannert.
msg203 |
Author: [hidden] (lannert) |
Date: 2002-03-08 15:21 |
|
In roundup/admin.py a local variable "value" is
used but has no value. The following patch made
the exception disappear:
***
/usr/local/lib/python2.2/site-packages/roundup/admin.py.orig
Wed Jan 23 22:38:50 2002
---
/usr/local/lib/python2.2/site-packages/roundup/admin.py
Fri Mar 8 16:11:54 2002
***************
*** 529,535 **** props =
self.props_from_args(args[1:])
# convert types
! for propname in props.keys():
# get the property
try:
proptype = properties[propname]
--- 529,535 ----
props = self.props_from_args(args[1:])
# convert types
! for propname, value in props.items():
# get the property
try:
proptype = properties[propname]
|
|
Date |
User |
Action |
Args |
2002-03-08 15:21:24 | lannert | create | |
|