Changes between Initial Version and Version 1 of Ticket #24518
- Timestamp:
- Mar 20, 2015, 9:32:29 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24518
- Property Status new → assigned
-
Ticket #24518 – Description
initial v1 1 1 With Python3, when not using argparse for a management command, the verbosity option uses a type=choice, which leads to a `TypeError: unorderable types: str() > int()` in `django/core/management/commands/test.py` at line 65 (`if options['verbosity'] > 0`) 2 2 3 The problem comes from this line :3 The problem comes from this line in `django/core/management/base.py`: 4 4 {{{ 5 5 parser.add_option('-v', '--verbosity', action='store', dest='verbosity', default='1',