Commit b6a4bdfd authored by Dmitry Shelepnev's avatar Dmitry Shelepnev
Browse files

Fix another error

parent f5b55d91
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -562,7 +562,7 @@ def LoginView(request):
        username = request.POST['username']
        password = request.POST['password']
    except KeyError:
        return render(request, 'sopds_Login.html', args) 
        return render(request, 'sopds_login.html', args) 
    
    next = request.GET.get('next',reverse("web:main"))