diff options
author | jan.hradil <jan.hradil@pantheon.tech> | 2017-04-27 14:47:16 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2017-05-02 06:24:18 +0000 |
commit | 44cafa8a265cfb1144638430079ef4dbf2501d72 (patch) | |
tree | a1eaea31c31578107c9cd11946772c259344010b /resources/libraries/python/honeycomb/HoneycombSetup.py | |
parent | 41212b4103c2f1b746d8b2101328e49e8697ef6c (diff) |
csit-validate-pylint-master/3731 for build 3731
pylint repairs
deleted duplicated method from HcPersistence.py
Change-Id: I426e6c15957c995ea10bd11ae2deac75b1cab922
Signed-off-by: jan.hradil <jan.hradil@pantheon.tech>
Diffstat (limited to 'resources/libraries/python/honeycomb/HoneycombSetup.py')
-rw-r--r-- | resources/libraries/python/honeycomb/HoneycombSetup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/honeycomb/HoneycombSetup.py b/resources/libraries/python/honeycomb/HoneycombSetup.py index 871ade6887..551d44b5ae 100644 --- a/resources/libraries/python/honeycomb/HoneycombSetup.py +++ b/resources/libraries/python/honeycomb/HoneycombSetup.py @@ -400,7 +400,7 @@ class HoneycombSetup(object): Const.REMOTE_HC_DIR, artifact_id, version) cmd = "sudo mkdir -p {0}; " \ "sudo cp /usr/share/java/{1} {0}/{2}-{3}.jar".format( - directory, item, artifact_id, version) + directory, item, artifact_id, version) (ret_code, _, stderr) = ssh.exec_command(cmd) if ret_code != 0: |