Fix missing keyword argument in soc.views.user.profile.create() function when calling edit().
Patch by: Pawel Solyga
Review by: to-be-reviewed
--- 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