Trees | Indices | Help |
---|
|
1 import click 2 from coprs.logic import coprs_logic 3 4 5 @click.command() 6 @click.option( 7 "--active-only/--all", "active_only", 8 help="Display only active chroots.", 9 default=True 10 )12 """Displays current mock chroots""" 13 for ch in coprs_logic.MockChrootsLogic.get_multiple( 14 active_only=active_only).all(): 15 16 print(ch.name)17
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 | http://epydoc.sourceforge.net |