Merge remote-tracking branch 'inventree/master'
This commit is contained in:
commit
9d5acaad58
|
|
@ -85,7 +85,7 @@ class BaseInvenTreeSetting(models.Model):
|
|||
|
||||
# Convert to javascript compatible booleans
|
||||
if cls.validator_is_bool(validator):
|
||||
value = value.lower()
|
||||
value = str(value).lower()
|
||||
|
||||
# Numerical values remain the same
|
||||
elif cls.validator_is_int(validator):
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import os
|
|||
import logging
|
||||
|
||||
|
||||
logger = logging.get('inventree')
|
||||
logger = logging.getLogger('inventree')
|
||||
|
||||
workers = os.environ.get('INVENTREE_GUNICORN_WORKERS', None)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue