changeset 389:08b831d894c8

web: Actually pass the correct author to the SCM backend.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 13 Oct 2015 23:56:21 -0700
parents fcd9eb46e049
children 5855c42752be
files wikked/webimpl/edit.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/wikked/webimpl/edit.py	Tue Oct 13 23:55:52 2015 -0700
+++ b/wikked/webimpl/edit.py	Tue Oct 13 23:56:21 2015 -0700
@@ -103,7 +103,7 @@
     message = message or 'Edited ' + url
     page_fields = {
             'text': text,
-            'author': user,
+            'author': author,
             'message': message
             }
     wiki.setPage(url, page_fields)