Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move celery task into own task.py | Elrond | 2012-03-21 | 2 | -57/+79 |
| | | | | | | Move the actual celery task from processing/__init__.py into its own .../task.py. That way it can be imported as needed. | ||||
* | Turn processing.py into a submodule. | Elrond | 2012-03-21 | 1 | -0/+154 |
processing.py -> processing/__init__.py This is in preparation for splitting processing a bit. The main reason for the split is celery setup: celery needs to be setup before even importing and importing and subclassing some of its parts. So it's better to move the critical parts into their own submodule and import it as late as needed. |