Trees | Indices | Help |
---|
|
1 from flask_script import Command, Option 2 from coprs.logic import coprs_logic 3 46 7 "Displays current mock chroots" 82410 for ch in coprs_logic.MockChrootsLogic.get_multiple( 11 active_only=active_only).all(): 12 13 print(ch.name)14 15 option_list = ( 16 Option("--active-only", 17 "-a", 18 dest="active_only", 19 help="Display only active chroots", 20 required=False, 21 action="store_true", 22 default=False), 23 )
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 | http://epydoc.sourceforge.net |