Handle variable types

pypy
Simon 5 years ago
parent 0090f1a65d
commit 2cc471e9b8

@ -624,11 +624,11 @@ def options_config():
logger.debug('(OPTIONS) %s - TS2_STATIC contains characters other than numbers and comma, ignoring',_system)
continue
if not _options['DEFAULT_REFLECTOR'].isdigit():
if isinstance(_options['DEFAULT_REFLECTOR'], str) and not _options['DEFAULT_REFLECTOR'].isdigit():
logger.debug('(OPTIONS) %s - DEFAULT_UA_TIMER is not an integer, ignoring',_system)
continue
if not _options['DEFAULT_UA_TIMER'].isdigit():
if isinstance(_options['DEFAULT_UA_TIMER'], str) and not _options['DEFAULT_UA_TIMER'].isdigit():
logger.debug('(OPTIONS) %s - DEFAULT_REFLECTOR is not an integer, ignoring',_system)
continue

Loading…
Cancel
Save

Powered by TurnKey Linux.