From a3e762cb4e13e82b0ef58448796111bf2a152d7d Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Thu, 28 Mar 2019 16:36:03 +0000
Subject: [PATCH] Fixed typo in the python script merging IC files.

---
 tools/combine_ics.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/combine_ics.py b/tools/combine_ics.py
index 64f255a619..d864c67d7d 100755
--- a/tools/combine_ics.py
+++ b/tools/combine_ics.py
@@ -41,7 +41,7 @@ import numpy as np
 # Store the compression level
 gzip_level = 4
 if len(sys.argv) > 3:
-    gzip_level = sys.argv[3]
+    gzip_level = int(sys.argv[3])
 
 # First, we need to collect some information from the master file
 main_file_name = str(sys.argv[1])[:-7]
-- 
GitLab