Merge branch '2.0' into 2.1

This commit is contained in:
Julien Duponchelle
2017-05-31 16:58:31 +02:00
19 changed files with 218 additions and 21 deletions

View File

@ -43,6 +43,9 @@ import gns3server.handlers
import logging
log = logging.getLogger(__name__)
if not aiohttp.__version__.startswith("2.0"):
raise RuntimeError("You need aiohttp 2.0 for running GNS3")
class WebServer: