cubicweb/web/views/forms.py
changeset 11131 2dafcdd19c99
parent 11057 0b59724cb3f2
child 11767 432f87a63057
--- a/cubicweb/web/views/forms.py	Thu Feb 11 10:03:31 2016 +0100
+++ b/cubicweb/web/views/forms.py	Thu Feb 11 10:03:51 2016 +0100
@@ -312,7 +312,7 @@
         try:
             return super(EntityFieldsForm, cls_or_self).field_by_name(name, role)
         except form.FieldNotFound:
-            if eschema is None or role is None or not name in eschema.schema:
+            if eschema is None or role is None or name not in eschema.schema:
                 raise
             rschema = eschema.schema.rschema(name)
             # XXX use a sample target type. Document this.
@@ -325,7 +325,7 @@
                 kwargs = {}
             if fieldcls:
                 if not isinstance(fieldcls, type):
-                    return fieldcls # already and instance
+                    return fieldcls  # already and instance
                 return fieldcls(name=name, role=role, eidparam=True, **kwargs)
             if isinstance(cls_or_self, type):
                 req = None