Make usertypes.Exit an IntEnum.
This commit is contained in:
parent
3f98bf372e
commit
b619d835e6
@ -240,9 +240,9 @@ Completion = enum('Completion', ['command', 'section', 'option', 'value',
|
|||||||
'quickmark_by_name', 'url', 'sessions'])
|
'quickmark_by_name', 'url', 'sessions'])
|
||||||
|
|
||||||
|
|
||||||
# Exit statuses for errors
|
# Exit statuses for errors. Needs to be an int for sys.exit.
|
||||||
Exit = enum('Exit', ['ok', 'reserved', 'exception', 'err_ipc', 'err_init',
|
Exit = enum('Exit', ['ok', 'reserved', 'exception', 'err_ipc', 'err_init',
|
||||||
'err_config', 'err_key_config'])
|
'err_config', 'err_key_config'], is_int=True)
|
||||||
|
|
||||||
|
|
||||||
class Question(QObject):
|
class Question(QObject):
|
||||||
|
Loading…
Reference in New Issue
Block a user