diff sat/plugins/plugin_misc_debug.py @ 3126:2b0f739f8a46

plugin manhole: added "C" to namespace
author Goffi <goffi@goffi.org>
date Sun, 26 Jan 2020 18:08:10 +0100
parents ab2696e34d29
children 524856bd7b19
line wrap: on
line diff
--- a/sat/plugins/plugin_misc_debug.py	Sun Jan 26 18:08:09 2020 +0100
+++ b/sat/plugins/plugin_misc_debug.py	Sun Jan 26 18:08:10 2020 +0100
@@ -1,5 +1,4 @@
 #!/usr/bin/env python3
-# -*- coding: utf-8 -*-
 
 # SàT plugin for managing raw XML log
 # Copyright (C) 2009-2016  Jérôme Poisson (goffi@goffi.org)
@@ -17,12 +16,13 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+import json
 from sat.core.i18n import _
 from sat.core.log import getLogger
+from sat.core.constants import Const as C
+
 
 log = getLogger(__name__)
-from sat.core.constants import Const as C
-import json
 
 PLUGIN_INFO = {
     C.PI_NAME: "Debug Plugin",