Dominick Rivard
Dominick Rivard
Hi, I was getting the same issue in my project using Python 3.4.3 and I figured out that the issue is in the field.html template at line 50. I had...
More information about this issue, from the documentation here: https://docs.djangoproject.com/en/1.11/ref/forms/api/#styling-required-or-erroneous-form-rows to fix this issue without modifying django-bootstrap-form we had to add the following line to our form. `required_css_class = 'required'`....
Hi, I experienced the same issue. I tried the plugin with Basic Auth with an account that the password was containing the character `!` and in the log I was...
Hi Rhylx, I haven't use this script in years. I could not say. Best, Dominick
I recently used this and it worked, while testing connectivity to a new instance. `pika==0.13.0` ***send.py*** ```import pika import ssl credentials = pika.credentials.PlainCredentials(username='********', password='********') parameters = pika.ConnectionParameters( host='***********.rmq.cloudamqp.com', port=5671, virtual_host='********',...
I tested something and I added the file named `celery.py` under my own app. ``` from __future__ import absolute_import, unicode_literals from celery import Celery # import os # set the...
I will try the version 0.5.3 tomorrow morning. One thing I can tell is that I changed redis protocol over amqp using rabbitmq and it now allows me to start...
I tested the version 0.5.3 and I removed my own `celery.py` file and it worked out. I went ahead and cloned the 0.6.0 version locally and re-instated the missing files...
@seb-b how can I help to try fixing this error ? How can I reproduce the error that cause the removal of the celery file?
I had the same issue has described here, this is a result of which python interpreter is globally used on your OS. I am using Ubuntu 18.04 and python3 has...