summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Kraft <george.kraft@calxeda.com>2012-06-01 12:48:31 -0500
committerGeorge Kraft <george.kraft@calxeda.com>2012-06-01 12:48:31 -0500
commitf86d5b176425f33decde5a00fed6c6b804f75fe0 (patch)
treed152e0289247e65eaa0a67ee48cb3fd5821a00d0
parent708bc2de23581caa39b61828ee93e79d9028cc23 (diff)
downloadpyipmi-f86d5b176425f33decde5a00fed6c6b804f75fe0.tar.gz
mc: remove incorrect response fields
-rw-r--r--pyipmi/commands/mc.py6
-rw-r--r--pyipmi/mc.py7
2 files changed, 0 insertions, 13 deletions
diff --git a/pyipmi/commands/mc.py b/pyipmi/commands/mc.py
index 2143228..519914b 100644
--- a/pyipmi/commands/mc.py
+++ b/pyipmi/commands/mc.py
@@ -2,18 +2,12 @@
from .. import Command
from pyipmi.tools.responseparser import ResponseParserMixIn
-from pyipmi.mc import *
class MCResetCommand(Command, ResponseParserMixIn):
""" Describes the cxoem fabric list_ip_addrs IPMI command
"""
name = "Retrieve fabric IP info"
- result_type = MCResetResult
-
- response_fields = {
- 'File Name' : {}
- }
@property
def ipmitool_args(self):
diff --git a/pyipmi/mc.py b/pyipmi/mc.py
deleted file mode 100644
index ca6473e..0000000
--- a/pyipmi/mc.py
+++ /dev/null
@@ -1,7 +0,0 @@
-"""MC results
-
-"""
-
-class MCResetResult(object):
- """Object to hold fabric ip list results"""
- pass