Commit b5fdb218 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix command when copying element list content

parent 88a85486
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ def upgradeIndex(args: argparse.Namespace) -> None:
        print(dest_ul)
        # Copy the contents of the source <ul> to the destination <ul>
        if dest_ul and source_ul:
            dest_ul.extend(source_ul.contents)
            dest_ul.contents.extend(source_ul.contents)
        else:
            print("ERROR: List not found in source and destination index files...")
            exit(1)