From: Ulas Kozat Date: Thu, 9 Jun 2016 17:58:30 +0000 (-0700) Subject: using miscutil.read_templatefile(temp_filename) function in domino client X-Git-Tag: colorado.1.0~35 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F35%2F15335%2F1;p=domino.git using miscutil.read_templatefile(temp_filename) function in domino client Change-Id: I9862a2c50ac7ba24bfc5708eb7ba06ca2419f199 Signed-off-by: Ulas Kozat --- diff --git a/DominoClient.py b/DominoClient.py index 9cdcc39..8ce8ae7 100755 --- a/DominoClient.py +++ b/DominoClient.py @@ -118,11 +118,6 @@ class CLIHandler: CLIrespmsg.CLI_response = "Testing..." return CLIrespmsg -def read_templatefile(temp_filename): - f = open(temp_filename, 'r') - lines = f.read().splitlines() - - return lines class DominoClientCLIService(threading.Thread): def __init__(self, dominoclient, communicationhandler, interactive): @@ -315,7 +310,7 @@ class DominoClient: pub_msg.template_type = 'tosca-nfv-v1.0' try: - pub_msg.template = read_templatefile(toscafile) + pub_msg.template = miscutil.read_templatefile(toscafile) except IOError as e: logging.error('I/O error(%d): %s' , e.errno, e.strerror) return diff --git a/lib/util/miscutil.py b/lib/util/miscutil.py index 4afa565..ea284af 100644 --- a/lib/util/miscutil.py +++ b/lib/util/miscutil.py @@ -7,6 +7,6 @@ def read_templatefile(temp_filename): f = open(temp_filename, 'r') lines = f.read().splitlines() - + f.close() return lines