Create an error.
(self, message, *args, **kwargs)
| 2339 | self.__push_err( message, *args, **kwargs) |
| 2340 | |
| 2341 | def push_error(self, message, *args, **kwargs): |
| 2342 | """Create an error.""" |
| 2343 | kwargs['severity'] = 'error' |
| 2344 | self.__push_err( message, *args, **kwargs) |
| 2345 | |
| 2346 | def push_warning(self, message, *args, **kwargs): |
| 2347 | """Create a warning.""" |
no test coverage detected