From ae15f9f7e3673f0b68c2b92846d8b043a12c4430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20S=2E=20Martins?= Date: Sun, 14 May 2017 11:29:25 +0100 Subject: [PATCH] Cosmetic change to output. --- crossword_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossword_generator.py b/crossword_generator.py index 8049ba4..e1edda0 100755 --- a/crossword_generator.py +++ b/crossword_generator.py @@ -662,7 +662,7 @@ if __name__ == "__main__": # Generate grid dim = args.dim if len(args.dim)==2 else [args.dim[0], args.dim[0]] - print("Making a grid of dimension{}, in {} seconds with a target occupancy of {}.".format(dim, args.timeout, args.target_occ)) + print("Making a grid of dimension {}, in {} seconds with a target occupancy of {}.".format(dim, args.timeout, args.target_occ)) grid = generate_grid_new(words, dim, timeout=args.timeout, occ_goal=args.target_occ) # Print to file and compile