From 3e173baf12d316b3e2b7fee97404a46e90700d2d Mon Sep 17 00:00:00 2001 From: Phil <phil@secdev.org> Date: Thu, 5 Nov 2009 15:35:25 +0100 Subject: [PATCH] Broke an import loop in themes module --- scapy/themes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scapy/themes.py b/scapy/themes.py index 43257142..866de0e1 100644 --- a/scapy/themes.py +++ b/scapy/themes.py @@ -3,7 +3,6 @@ ## Copyright (C) Philippe Biondi <phil@secdev.org> ## This program is published under a GPLv2 license -import config ################## ## Color themes ## @@ -271,3 +270,5 @@ class ColorPrompt: except: return self.__prompt + +import config -- GitLab