Switch to unified view
a/Allura/allura/command/base.py | b/Allura/allura/command/base.py | ||
---|---|---|---|
... |
... |
||
15 | log = None |
15 | log = None |
16 | 16 | ||
17 | class EmptyClass(object): pass |
17 | class EmptyClass(object): pass |
18 | 18 | ||
19 | class Command(command.Command): |
19 | class Command(command.Command): |
20 | min_args = 0
|
20 | min_args = 1
|
21 | max_args = 1 |
21 | max_args = 1 |
22 | usage = '[<ini file>]' |
22 | usage = '[<ini file>]' |
23 | group_name = 'Allura' |
23 | group_name = 'Allura' |
24 | 24 | ||
25 | @ming.utils.LazyProperty |
25 | @ming.utils.LazyProperty |