diff options
Diffstat (limited to 'grc/core/params/param.py')
-rw-r--r-- | grc/core/params/param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/params/param.py b/grc/core/params/param.py index e6282b2fb6..122480dfa2 100644 --- a/grc/core/params/param.py +++ b/grc/core/params/param.py @@ -34,7 +34,7 @@ class Param(Element): """Make a new param from nested data""" super(Param, self).__init__(parent) self.key = id - self.name = label.strip() or id.title() + self.name = 'ID' if id == 'id' else (label.strip() or id.title()) self.category = category or Constants.DEFAULT_PARAM_TAB self.dtype = dtype |