Skip to content

Commit 3e66958

Browse files
committed
templates: Fix pwclientrc sample
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 5ee0c0f)
1 parent 92ccdeb commit 3e66958

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

patchwork/templates/patchwork/pwclientrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# default={{ project.linkname }}
99

1010
[{{ project.linkname }}]
11-
url= {{scheme}}://{{site.domain}}{% url 'xmlrpc' %}
11+
url = {{ scheme }}://{{ site.domain }}{% url 'xmlrpc' %}
1212
{% if user.is_authenticated %}
13-
username: {{ user.username }}
14-
password: <add your patchwork password here>
13+
username = {{ user.username }}
14+
password = <add your patchwork password here>
1515
{% endif %}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
fixes:
3+
- |
4+
The ``pwclientrc`` samples generated by Patchwork were previously not valid
5+
INI files. This issue is resolved. (`#277
6+
<https://github.com/getpatchwork/patchwork/issues/277>`__)

0 commit comments

Comments
 (0)