fix indentation in header comment

This commit is contained in:
tooomm 2019-05-18 17:56:45 +02:00 committed by GitHub
parent 0f794b243e
commit 5dff95b3df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -191,10 +191,10 @@ def open_header(card_xml_file: IO[Any]) -> None:
"""
card_xml_file.write(
"<cockatrice_carddatabase version='3'>\n"
+ "<!--\nCreated At: "
+ datetime.datetime.utcnow().strftime("%a, %b %d %Y, %H:%M:%S")
+ " (UTC)"
+ "\nCreated By: Magic-Spoiler project @ https://github.com/Cockatrice/Magic-Spoiler\n-->\n"
+ "<!--\n"
+ " Created At: " + datetime.datetime.utcnow().strftime("%a, %b %d %Y, %H:%M:%S") + " (UTC)\n"
+ " Created By: Magic-Spoiler project @ https://github.com/Cockatrice/Magic-Spoiler\n"
+ " -->\n"
+ "<sets>\n"
)