Changeset - 59c26a9aba63
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 14 years ago 2011-11-02 21:41:02
marcin@python-works.com
typo fixes
2 files changed with 4 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/controllers/admin/users.py
Show inline comments
 
@@ -71,9 +71,9 @@ class UsersController(BaseController):
 
        # url('users')
 

	
 
        user_model = UserModel()
 
        login_form = UserForm()()
 
        user_form = UserForm()()
 
        try:
 
            form_result = login_form.to_python(dict(request.POST))
 
            form_result = user_form.to_python(dict(request.POST))
 
            user_model.create(form_result)
 
            h.flash(_('created user %s') % form_result['username'],
 
                    category='success')
rhodecode/lib/auth.py
Show inline comments
 
@@ -141,7 +141,8 @@ def generate_api_key(str_, salt=None):
 

	
 
def authfunc(environ, username, password):
 
    """
 
    Dummy authentication function used in Mercurial/Git/ and access control,
 
    Dummy authentication wrapper function used in Mercurial and Git for 
 
    access control.
 

	
 
    :param environ: needed only for using in Basic auth
 
    """
0 comments (0 inline, 0 general)