Which is a tiny wrapper around migrate.py. It is a name more faithful to its purpose. We still keep migrate.py as an entry point, to keep backwards compatibility.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- database/autotest-upgrade-db | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) create mode 100755 database/autotest-upgrade-db diff --git a/database/autotest-upgrade-db b/database/autotest-upgrade-db new file mode 100755 index 0000000..6afb1cc --- /dev/null +++ b/database/autotest-upgrade-db @@ -0,0 +1,6 @@ +#!/usr/bin/python -u + +import migrate + +if __name__ == '__main__': + migrate.main() -- 1.7.7.5 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
