Commit 032f1b75819507c3e5b6566dedaa4d08c8ec6a2b
1 parent
1af49693
Exists in
master
and in
1 other branch
remove 'info' and 'warn' questions from factory
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
factory.py
... | ... | @@ -61,8 +61,8 @@ class QFactory(object): |
61 | 61 | 'numeric-interval': QuestionNumericInterval, |
62 | 62 | 'textarea' : QuestionTextArea, |
63 | 63 | # -- informative panels -- |
64 | - 'information': QuestionInformation, 'info': QuestionInformation, | |
65 | - 'warning' : QuestionInformation, 'warn': QuestionInformation, | |
64 | + 'information': QuestionInformation, | |
65 | + 'warning' : QuestionInformation, | |
66 | 66 | 'alert' : QuestionInformation, |
67 | 67 | 'success' : QuestionInformation, |
68 | 68 | } | ... | ... |