MiM:
but when i run it it gives me this error
Backing up sites...
Traceback (most recent call last):
File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
exec code in run_globals
File "/opt/frappe/newerpnext/apps/frappe/frappe/utils/bench_helper.py", line 94, in <module>
main()
File "/opt/frappe/newerpnext/apps/frappe/frappe/utils/bench_helper.py", line 18, in main
click.Group(commands=commands)(prog_name='bench')
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 722, in __call__
return self.main(*args, **kwargs)
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 697, in main
rv = self.invoke(ctx)
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 895, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/core.py", line 535, in invoke
return callback(*args, **kwargs)
File "/opt/frappe/newerpnext/env/local/lib/python2.7/site-packages/click/decorators.py", line 17, in new_func
return f(get_current_context(), *args, **kwargs)
File "/opt/frappe/newerpnext/apps/frappe/frappe/commands/__init__.py", line 24, in _func
ret = f(frappe._dict(ctx.obj), *args, **kwargs)
File "/opt/frappe/newerpnext/apps/frappe/frappe/commands/site.py", line 293, in backup
frappe.connect()
File "/opt/frappe/newerpnext/apps/frappe/frappe/__init__.py", line 167, in connect
from frappe.database import Database
ImportError: cannot import name Database
Please Help
If you are shifting between branches and facing this error (I face this error when I switch to develop and then back to staging-fixes), run the following command
# if you are in frappe-bench folder
frappe-bench > cd apps/frappe
frappe-bench/apps/frappe > find . -name "*.pyc" -exec rm -f {} \;
Basically, all the .pyc needs to be rebuild because of changes in lots of core files.
10 Likes