[V3 Instance setup] Change backup time separator for Windows (#1419)

This commit is contained in:
palmtree5 2018-03-12 14:48:13 -08:00 committed by Will
parent 1cb74f0ea7
commit 5bdb455bc0

View File

@ -176,7 +176,7 @@ def remove_instance():
else: else:
print("Backing up the instance's data...") print("Backing up the instance's data...")
backup_filename = "redv3-{}-{}.tar.gz".format( backup_filename = "redv3-{}-{}.tar.gz".format(
selected, dt.utcnow().strftime("%Y-%m-%d %H:%M:%S") selected, dt.utcnow().strftime("%Y-%m-%d %H-%M-%S")
) )
pth = Path(instance_data["DATA_PATH"]) pth = Path(instance_data["DATA_PATH"])
home = pth.home() home = pth.home()