aboutsummaryrefslogtreecommitdiffstats
path: root/Testcases/cfgm_common/ifmap/__init__.py
diff options
context:
space:
mode:
authorStuart Mackie <wsmackie@juniper.net>2017-03-23 06:26:16 -0700
committerStuart Mackie <wsmackie@juniper.net>2017-03-23 06:26:16 -0700
commitc29a525331b45ead15ec376d03f76836d622c943 (patch)
tree6713f16cb30c739a66a0cb56fb4e2efed732eff1 /Testcases/cfgm_common/ifmap/__init__.py
parent88df88a19674ccc0017836941b8ee32eaadf19fb (diff)
Removed test case files without correct license language. Will replace in future.
Change-Id: I16435a250257cf97a67a8ba31303c89d74204ac2 Signed-off-by: Stuart Mackie <wsmackie@juniper.net>
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)