Douglas Schilling Landgraf has uploaded a new change for review.

Change subject: engine_page: Remove double quotes
......................................................................

engine_page: Remove double quotes

When using '""' will add double quotes into /etc/default/ovirt
which can affect upgrade tool reading values with augeas.
This patch removes the double quotes.

Change-Id: If7775423a64937f4309631e883587c669dd56f00
Signed-off-by: Douglas Schilling Landgraf <[email protected]>
---
M src/engine_page.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-node-plugin-vdsm 
refs/changes/09/36309/1

diff --git a/src/engine_page.py b/src/engine_page.py
index f9c9fdb..ad43566 100644
--- a/src/engine_page.py
+++ b/src/engine_page.py
@@ -114,7 +114,7 @@
             proto = "https"
         else:
             proto = "http"
-        engine_data = '"%s %s://%s"' % (
+        engine_data = "%s %s://%s" % (
             config.engine_name,
             proto,
             ":".join(server_url)


-- 
To view, visit http://gerrit.ovirt.org/36309
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If7775423a64937f4309631e883587c669dd56f00
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-node-plugin-vdsm
Gerrit-Branch: master
Gerrit-Owner: Douglas Schilling Landgraf <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to