aboutsummaryrefslogtreecommitdiffstats
path: root/Testcases/cfgm_common/ifmap/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Testcases/cfgm_common/ifmap/__init__.py')
-rw-r--r--Testcases/cfgm_common/ifmap/__init__.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/Testcases/cfgm_common/ifmap/__init__.py b/Testcases/cfgm_common/ifmap/__init__.py
deleted file mode 100644
index 189d225..0000000
--- a/Testcases/cfgm_common/ifmap/__init__.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/python
-#
-# Copyright 2011, Infoblox, All Rights Reserved
-#
-# Open Source, see LICENSE
-#
-
-"""
-ifmap-python client is an implementation of the TCG IF-MAP 2.0 protocol as a client library.
-"""
-
-import sys
-
-#
-# Project properties
-#
-
-__version__ = '0.1'
-__build__=""
-
-#
-# Exceptions
-#
-class Error(Exception):
- """
- Base class for exception handling
- """
- def __init__(self, msg):
- Exception.__init__(self, "Error: '%s'" % msg)