1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-25 07:35:22 +00:00

Merge pull request #528 from catborise/master

fix setting.py.template & decodestring convert
This commit is contained in:
catborise 2022-08-22 16:22:32 +03:00 committed by GitHub
commit 2db7a4fa27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -30,7 +30,7 @@ def validate_ssh_key(key):
username = array[2] username = array[2]
# must have only valid rsa-ssh key characters ie binascii characters # must have only valid rsa-ssh key characters ie binascii characters
try: try:
data = base64.decodestring(string) data = base64.decodebytes(string)
except binascii.Error: except binascii.Error:
return False return False
# unpack the contents of data, from data[:4] , property of ssh key . # unpack the contents of data, from data[:4] , property of ssh key .

View file

@ -22,7 +22,6 @@ INSTALLED_APPS = [
"django.contrib.sessions", "django.contrib.sessions",
"django.contrib.messages", "django.contrib.messages",
"django.contrib.staticfiles", "django.contrib.staticfiles",
"rest_framework",
"django_bootstrap5", "django_bootstrap5",
"django_icons", "django_icons",
"django_otp", "django_otp",