Update gitignore

This commit is contained in:
Arinerron 2018-04-18 21:32:59 -07:00
parent 829af91c82
commit 749bbe5b1f
No known key found for this signature in database
GPG Key ID: 99383627861C62F0
3 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ onionr/data-backup/*
onionr/gnupg/*
run.sh
onionr/data-encrypted.dat
onionr/.onionr-lock

View File

View File

@ -71,7 +71,7 @@ class Onionr:
logger.set_file(config.get('log', {'file': {'path': 'data/output.log'}})['file']['path'])
logger.set_settings(settings)
if config.get('devmode', True).lower() == 'true':
if str(config.get('devmode', True)).lower() == 'true':
self._developmentMode = True
logger.set_level(logger.LEVEL_DEBUG)
else: