From 76f16fe884e6919f2585db545c1828b920e87d10 Mon Sep 17 00:00:00 2001 From: merspieler Date: Thu, 25 Apr 2019 01:50:38 +0000 Subject: [PATCH] Fixed another mistake in continuation Signed-off-by: merspieler --- build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build b/build index 9b8bf6a..0d6e630 100755 --- a/build +++ b/build @@ -197,7 +197,7 @@ try: if start_bounds["north"] == project_bounds["north"] and start_bounds["east"] == project_bounds["east"]: print("It seems like the project build is complete. If you wish to rerun please do so without -c") else: - run_build(run_build["west"], project_bounds["south"], project_bounds["east"], project_bounds["north"], log_done=True, start_w=start_bounds["east"], start_s=start_bounds["south"], chunk_size=chunks) + run_build(project_bounds["west"], project_bounds["south"], project_bounds["east"], project_bounds["north"], log_done=True, start_w=start_bounds["east"], start_s=start_bounds["south"], chunk_size=chunks) except KeyboardInterrupt: print("Interrupted by user!") sys.exit(130)