When running `py manage.py worker` on Windows, I get the following: ``` sh AttributeError: module 'signal' has no attribute 'SIGQUIT' ``` Which is coming from here: https://github.com/dabapps/django-db-queue/blob/d27fd08a9b11271dca23e42b37772f29727cef7c/django_dbq/management/commands/worker.py#L87 I was able to successfully run the worker and create jobs by modifying it like this: ``` py if hasattr(signal, 'SIGQUIT'): signal.signal(signal.SIGQUIT, self.shutdown) ```