From c13f83a7dbaf260cf5847bc7d3dbe8f468e07f47 Mon Sep 17 00:00:00 2001 From: CorpNewt <12772521+corpnewt@users.noreply.github.com> Date: Sat, 19 Oct 2019 15:30:23 -0500 Subject: [PATCH] Strip : in potential folder names --- gibMacOS.command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gibMacOS.command b/gibMacOS.command index 13f4078..52d68f1 100755 --- a/gibMacOS.command +++ b/gibMacOS.command @@ -221,7 +221,7 @@ class gibMacOS: self.resize() cwd = os.getcwd() os.chdir(os.path.dirname(os.path.realpath(__file__))) - name = "{} - {} {}".format(prod["product"], prod["version"], prod["title"]) + name = "{} - {} {}".format(prod["product"], prod["version"], prod["title"]).replace(":","") if os.path.exists(os.path.join(os.getcwd(), self.saves, self.current_catalog, name)): while True: self.u.head("Already Exists")