From 9c71e96fd4bb55bf24b95c623b478e09488c628f Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 27 Feb 2017 11:31:51 +0100 Subject: [PATCH] Report aiohttp version in crash report --- gns3server/crash_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gns3server/crash_report.py b/gns3server/crash_report.py index 7edc2865..7302207b 100644 --- a/gns3server/crash_report.py +++ b/gns3server/crash_report.py @@ -18,6 +18,7 @@ import os import sys import struct +import aiohttp import platform @@ -94,6 +95,7 @@ class CrashReport: "os:win_32": " ".join(platform.win32_ver()), "os:mac": "{} {}".format(platform.mac_ver()[0], platform.mac_ver()[2]), "os:linux": " ".join(platform.linux_distribution()), + "aiohttp:version": aiohttp.__version__, "python:version": "{}.{}.{}".format(sys.version_info[0], sys.version_info[1], sys.version_info[2]),