From f2edb49d2287f96132fd3c4232d4467d46a814e1 Mon Sep 17 00:00:00 2001 From: Lilfade Date: Mon, 4 Mar 2024 00:25:40 -0600 Subject: [PATCH] fixes --- main.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 5c19060..a3074f6 100644 --- a/main.py +++ b/main.py @@ -5,16 +5,17 @@ import unpacker from error import Ai1wmError ''' -check file for proper format -extract info file -gather details -extract files to new folder with permissions +obtain new info for sites database +install core files +move wp-content to correct place +import db to website +check for any issues ''' if __name__ == '__main__': """ Entry of the ai1wm program. """ - parser = argparse.ArgumentParser(prog='ai1wm', description='Pack/Unpack All-in-One WP Migration Packages') + parser = argparse.ArgumentParser(prog='ai1wm', description='Unpack All-in-One WP Migration Packages') parser.add_argument('source', help='source path') parser.add_argument('target', help='target path') args = parser.parse_args()