(attrib)
| 609 | continue |
| 610 | |
| 611 | def check_attrib(attrib): |
| 612 | if attrib not in obj: |
| 613 | return gettext("'%s' attribute not found for server '%s'" % |
| 614 | (attrib, server)) |
| 615 | return None |
| 616 | |
| 617 | def check_is_integer(value): |
| 618 | if not isinstance(value, int): |
no test coverage detected