lemonadelabs / django-merlin

The web backend for Merlin, written on the Django web framework.
1 stars 0 forks source link

fixed broken import, need better module organization #10

Closed achimgaedke closed 8 years ago

achimgaedke commented 8 years ago

With 6d636ef453b1628fede11ab01c81c284256f4f4e I restored the function of the addsimulations sub-command.

Modifying

-from pymerlin_examples import RecordStorageFacility
+from examples import RecordStorageFacility

I guess there was another symlink in Sam's setup - or an unchecked renaming. It would be great to sort out the name clashes between python-merlin and django-merlin.

Or4c commented 8 years ago

Yeah, from our conversation earlier, we should come up with a standard way for pymerlin to be accessed from django-merlin. I kinda feel that just including it as a git submodule package in the root of the django app might be the way to go.

Or4c commented 8 years ago

I have changed my symlink to be examples so it works on both our setups for now.