]> git.ozlabs.org Git - patchwork/commitdiff
Fix user/username mismatch on pwclientrc template
authorJeremy Kerr <jk@ozlabs.org>
Tue, 9 Sep 2008 01:15:03 +0000 (11:15 +1000)
committerJeremy Kerr <jk@ozlabs.org>
Tue, 9 Sep 2008 01:15:03 +0000 (11:15 +1000)
... and add a comment to the auth section

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
templates/patchwork/pwclientrc

index 79a0f3b6b776c6a214fbb45dda985f1ddf2d045e..5fb1f47b65e3ba0696dfa375f94c731137c24667 100644 (file)
@@ -6,9 +6,10 @@
 [base]
 url: http://{{site.domain}}{% url patchwork.views.xmlrpc.xmlrpc %}
 project: {{ project.linkname }}
-
 {% if user.is_authenticated %}
+# Adding authentication parameters will allow you to use the 'update'
+# command on patches that you are allowed to edit.
 [auth]
-user: {{ user.username }}
+username: {{ user.username }}
 password: <add your patchwork password here>
 {% endif %}