zapier / django-drip

:droplet: Use Django admin to manage drip campaign emails using querysets on Django's User model.
MIT License
638 stars 137 forks source link

namespace conflict with mock #24

Closed brad closed 11 years ago

brad commented 11 years ago

This isn't a problem with django-drip==0.1.3, only with the latest source. Steps to reproduce:

$ mkvirtualenv testpip
$ pip install mock -e \
git+https://github.com/zapier/django-drip.git#egg=django-drip
$ python
>>> from mock import patch
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name patch
brad commented 11 years ago

Ahh, I see. It must be that top-level mock directory. It would probably be better to move that into drip right?

brad commented 11 years ago

This has been merged in to master.