summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Guppy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Guppy.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Guppy.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Guppy.py b/src/lib/Bcfg2/Server/Plugins/Guppy.py
index d13e3f061..4f2601f15 100644
--- a/src/lib/Bcfg2/Server/Plugins/Guppy.py
+++ b/src/lib/Bcfg2/Server/Plugins/Guppy.py
@@ -27,6 +27,7 @@ Remote interactive console. To return to Annex, type '-'.
"""
import Bcfg2.Server.Plugin
+from guppy.heapy import Remote
class Guppy(Bcfg2.Server.Plugin.Plugin):
@@ -45,7 +46,6 @@ class Guppy(Bcfg2.Server.Plugin.Plugin):
def Enable(self):
"""Enable remote debugging"""
try:
- from guppy.heapy import Remote
Remote.on()
except:
self.logger.error("Failed to create Heapy context")
@@ -54,7 +54,6 @@ class Guppy(Bcfg2.Server.Plugin.Plugin):
def Disable(self):
"""Disable remote debugging"""
try:
- from guppy.heapy import Remote
Remote.off()
except:
self.logger.error("Failed to disable Heapy")