def debug(argv=None): """Helper to debug the required command.""" from gerritclient.main import debug debug("list", GroupList, argv)
def debug(argv=None): """Helper to debug the required command.""" from gerritclient.main import debug debug("show", ChangeShow, argv)
action = 'delete' attribute = 'account' class GroupInclude(BaseGroupAction): """Includes one or several groups into a Gerrit internal group.""" action = 'include' attribute = 'group' class GroupExclude(BaseGroupAction): """Deletes one or several included groups from a Gerrit internal group.""" action = 'exclude' attribute = 'group' def debug(argv=None): """Helper to debug the required command.""" from gerritclient.main import debug debug("list", GroupList, argv) if __name__ == "__main__": debug()
def debug(argv=None): """Helper to debug the required command.""" from gerritclient.main import debug debug("version", ServerVersionShow, argv)