pony_up
pony_up copied to clipboard
Can't find init file when i use pip to install the package
after doing command pip install pony_up
i find that the __init__.py
file has gone
because of that i can't import the package
@littleboy12580 Here is how I got around that.
from pony_up.do_update import do_all_migrations
do_all_migrations(bind_func, folder_path=migrations_folder, python_import=python_import)
If you look in the projects __init__.py
file it is importing do_all_migrations
as migrate
.
I should totally have a look at that.
I'm not sure if that means that file is missing on the pip package?