INI files should use 'key = value' values, not 'key: value'. Correct
this and fix some other whitespace issues.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Closes: #277
(cherry picked from commit
5ee0c0fdb0fc85f6e03ed55b04c918fa2ee0659b)
# 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 %}
--- /dev/null
+---
+fixes:
+ - |
+ The ``pwclientrc`` samples generated by Patchwork were previously not valid
+ INI files. This issue is resolved. (`#277
+ <https://github.com/getpatchwork/patchwork/issues/277>`__)