Closed becurrie closed 2 years ago
Yes, call
should be available for Python 2.7. I will fix this and will release it with the upcoming version 0.7.0. I also added a regression test that will at least verify that subprocess.call
will be called by the create_database_dump
function.
Thanks for reporting!
When attempting to use the
create_database_dump
utility on a legacy python2.7 system, the subprocess command fails becauserun
doesn't exist in the subprocess module bundled with Python 2.7.https://docs.python.org/3.5/library/subprocess.html#older-high-level-api
I believe the equivalent is
call
instead ofrun
.Relevant traceback: