Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Randark-JMT committed Oct 1, 2024
1 parent b7d692c commit 014a969
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import json
import uuid
from hashlib import md5
from urllib.parse import quote


if __name__ == "__main__":
Expand All @@ -21,7 +22,7 @@
users_data["Users"][username_md5] = {
"Github-Actor": actor,
"Username": username,
"Email-Address": email,
"Email-Address": quote(email),
"User-Biography": biography,
}

Expand Down

0 comments on commit 014a969

Please sign in to comment.