Fix missing keyword argument in soc.views.user.profile.create() function when calling edit().
authorPawel Solyga <Pawel.Solyga@gmail.com>
Sat, 18 Oct 2008 17:27:53 +0000
changeset 383 8a8820544caa
parent 382 f1be585b894e
child 384 45d6a1b492d6
Fix missing keyword argument in soc.views.user.profile.create() function when calling edit(). Patch by: Pawel Solyga Review by: to-be-reviewed
app/soc/views/user/profile.py
--- a/app/soc/views/user/profile.py	Sat Oct 18 17:25:04 2008 +0000
+++ b/app/soc/views/user/profile.py	Sat Oct 18 17:27:53 2008 +0000
@@ -189,4 +189,4 @@
 def create(request, page=None, template=DEF_USER_PROFILE_EDIT_TMPL):
   """create() view is same as edit() view, but with no link_name supplied.
   """
-  return edit(request, page, link_name=None, template=template)
\ No newline at end of file
+  return edit(request, page=page, link_name=None, template=template)
\ No newline at end of file