Skip to content

Commit

Permalink
Merge branch 'hotfix/0.11.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruptein committed Nov 9, 2018
2 parents b2c3d64 + 4540a38 commit 2c89c1b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.

## Unreleased

## 0.11.3

Another hotfix for 0.10.0.

### Fixed
- Actually fix the user creation bug for once.

## 0.11.2

Another hotfix for 0.10.0.
Expand Down
2 changes: 1 addition & 1 deletion PlanarAlly/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.2
0.11.3
2 changes: 1 addition & 1 deletion PlanarAlly/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async def login(request):
form["error"] = "Please provide a password"
else:
with db.atomic():
u = User(user=username)
u = User(name=username)
u.set_password(password)
u.save()
valid = True
Expand Down

0 comments on commit 2c89c1b

Please sign in to comment.