From 33b3183672a6a9c0c09877778bb047c1b29e1121 Mon Sep 17 00:00:00 2001 From: vponomaryov Date: Mon, 18 Jan 2016 15:36:34 +0200 Subject: [PATCH] Fix pep8 failure pep8 job started have following error: ./manila/share/drivers/huawei/v3/connection.py:1216:57: W292 no newline at end of file So, fix it to unblock gates. Change-Id: I765b28876237497b56bd60d48496299e86707d5a Closes-Bug: #1535303 --- manila/share/drivers/huawei/v3/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manila/share/drivers/huawei/v3/connection.py b/manila/share/drivers/huawei/v3/connection.py index fae5f67b75..3a3c8556ab 100644 --- a/manila/share/drivers/huawei/v3/connection.py +++ b/manila/share/drivers/huawei/v3/connection.py @@ -1213,4 +1213,4 @@ class V3StorageConnection(driver.HuaweiBase): LDAP_config = self.helper.get_LDAP_config() if (LDAP_config['LDAPSERVER'] == server and LDAP_config['BASEDN'] == domain): - self.helper.delete_LDAP_config() \ No newline at end of file + self.helper.delete_LDAP_config()