예제 #1
0
def debug(argv=None):
    """Helper to debug the required command."""

    from gerritclient.main import debug
    debug("list", GroupList, argv)
예제 #2
0
def debug(argv=None):
    """Helper to debug the required command."""

    from gerritclient.main import debug
    debug("show", ChangeShow, argv)
예제 #3
0
    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()
예제 #4
0
def debug(argv=None):
    """Helper to debug the required command."""

    from gerritclient.main import debug
    debug("version", ServerVersionShow, argv)