are we python or what? :D
This commit is contained in:
parent
66029d652e
commit
21bba13bc6
|
@ -23,12 +23,15 @@ import copy
|
||||||
import i18n
|
import i18n
|
||||||
_ = i18n._
|
_ = i18n._
|
||||||
|
|
||||||
OPT_TYPE = 0
|
|
||||||
OPT_VAL = 1
|
(
|
||||||
OPT_DESC = 2
|
OPT_TYPE,
|
||||||
|
OPT_VAL,
|
||||||
|
OPT_DESC,
|
||||||
# If OPT_RESTART is True - we need restart to use our changed option
|
# If OPT_RESTART is True - we need restart to use our changed option
|
||||||
# OPT_DESC also should be there
|
# OPT_DESC also should be there
|
||||||
OPT_RESTART = 3
|
OPT_RESTART,
|
||||||
|
) = range(4)
|
||||||
|
|
||||||
opt_int = [ 'integer', 0 ]
|
opt_int = [ 'integer', 0 ]
|
||||||
opt_str = [ 'string', 0 ]
|
opt_str = [ 'string', 0 ]
|
||||||
|
|
Loading…
Reference in New Issue