update requirements

This commit is contained in:
2020-10-27 13:28:48 +00:00
parent 0e76b9d445
commit 1093b3b112
3 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ def get_ep_client():
except Exception as e:
logger.info("Can't get connection to Etherpad Server. Error: {}".format(e))
raise e
return None,None
return None, None
return epc, group

View File

@@ -105,7 +105,7 @@ class Post(models.Model):
try:
html = getPadHTML(self.agenda_key)
except Exception as e:
logger.error("Can't get the agenda html from agenda key '{}'. Error: {}".format(self.agenda_key, e))
logger.error("Can't get the agenda html from agenda '{}'. Error: {}".format(self.agenda_key, e))
html = None
return html

View File

@@ -2,7 +2,7 @@ django==3.1.2
django-ckeditor==6.0.0
django-crontab==0.7.1
django-environ==0.4.5
django-filter==2.3.0
django-filter==2.4.0
django-static-jquery-ui==1.12.1.1
django-taggit==1.3.0
djangorestframework==3.12.1