Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
Merge 5c8086a into aa3de95
Browse files Browse the repository at this point in the history
  • Loading branch information
macartur committed Jul 9, 2018
2 parents aa3de95 + 5c8086a commit 7240798
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kytos/core/config.py
Expand Up @@ -154,6 +154,9 @@ def _parse_options(self, argv):

result = options.enable_entities_by_default in ['True', True]
options.enable_entities_by_default = result
options.napps_pre_installed = json.loads(options.napps_pre_installed)

if isinstance(options.napps_pre_installed, str):
napps = options.napps_pre_installed
options.napps_pre_installed = json.loads(napps)

return options

0 comments on commit 7240798

Please sign in to comment.