mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-20 05:17:56 +00:00
Fix IOU licence check flag
This commit is contained in:
parent
e367f95f96
commit
b5e01f7560
@ -372,8 +372,8 @@ class IOUVM(BaseVM):
|
||||
Checks for a valid IOU key in the iourc file (paranoid mode).
|
||||
"""
|
||||
|
||||
license_check = self._manager.config.get_section_config("IOU").getboolean("license_check", False)
|
||||
if license_check:
|
||||
license_check = self._manager.config.get_section_config("IOU").getboolean("license_check", True)
|
||||
if license_check is False:
|
||||
return
|
||||
|
||||
config = configparser.ConfigParser()
|
||||
|
Loading…
Reference in New Issue
Block a user