From 4581f8342d177f2a954fa28adc3c516a060f2a1f Mon Sep 17 00:00:00 2001 From: Pierre LALET <pierre.lalet@cea.fr> Date: Sun, 31 Jan 2016 20:35:34 +0100 Subject: [PATCH] Change default values for matplotlib graphs --- scapy/arch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scapy/arch/__init__.py b/scapy/arch/__init__.py index 9592cae7..577b20a9 100644 --- a/scapy/arch/__init__.py +++ b/scapy/arch/__init__.py @@ -20,7 +20,7 @@ try: MATPLOTLIB_INLINED = 1 else: MATPLOTLIB_INLINED = 0 - MATPLOTLIB_DEFAULT_PLOT_KARGS = { "color": "r", "marker": "+", "ls": "" } + MATPLOTLIB_DEFAULT_PLOT_KARGS = {"marker": "+"} except ImportError: plt = None MATPLOTLIB = 0 -- GitLab