1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-12 19:38:57 +00:00

Update error message to require aiohttp 2.2

This commit is contained in:
grossmj 2017-07-12 13:34:18 +07:00
parent c8155aa14f
commit 5747aba83c

View File

@ -44,7 +44,7 @@ import logging
log = logging.getLogger(__name__)
if not aiohttp.__version__.startswith("2.2"):
raise RuntimeError("You need aiohttp 2.0 for running GNS3")
raise RuntimeError("aiohttp 2.0 is required to run the GNS3 server")
class WebServer: