[PATCH 1/2] templates: Fix pwclientrc sample

Stephen Finucane stephen at that.guru
Sun Oct 21 22:13:34 AEDT 2018


INI files should use 'key = value' values, not 'key: value'. Correct
this and fix some other whitespace issues.

Signed-off-by: Stephen Finucane <stephen at that.guru>
---
 patchwork/templates/patchwork/pwclientrc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/patchwork/templates/patchwork/pwclientrc b/patchwork/templates/patchwork/pwclientrc
index 96464c1b..7d466d89 100644
--- a/patchwork/templates/patchwork/pwclientrc
+++ b/patchwork/templates/patchwork/pwclientrc
@@ -8,8 +8,8 @@
 # default={{ project.linkname }}
 
 [{{ project.linkname }}]
-url= {{scheme}}://{{site.domain}}{% url 'xmlrpc' %}
+url = {{ scheme }}://{{ site.domain }}{% url 'xmlrpc' %}
 {% if user.is_authenticated %}
-username: {{ user.username }}
-password: <add your patchwork password here>
+username = {{ user.username }}
+password = <add your patchwork password here>
 {% endif %}
-- 
2.17.2



More information about the Patchwork mailing list