(self, s)
| 49 | pass |
| 50 | |
| 51 | def onecmd(self, s): |
| 52 | ret_val = False |
| 53 | try: |
| 54 | ret_val = cmd.Cmd.onecmd(self, s) |
| 55 | except Exception as e: |
| 56 | print(e) |
| 57 | LOG.error(e) |
| 58 | LOG.debug('Exception info', exc_info=True) |
| 59 | |
| 60 | return ret_val |
| 61 | |
| 62 | def create_empty_sd(self): |
| 63 | sd = ldaptypes.SR_SECURITY_DESCRIPTOR() |
nothing calls this directly
no outgoing calls
no test coverage detected