From 6830d403be39ea5ea2843dd4ed0b34460d724b03 Mon Sep 17 00:00:00 2001 From: romainsacchi Date: Sat, 7 Oct 2023 21:19:37 +0200 Subject: [PATCH] Fix formatting of string for SDF export. --- unfold/unfold.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unfold/unfold.py b/unfold/unfold.py index 6d9e783..6d13aa4 100644 --- a/unfold/unfold.py +++ b/unfold/unfold.py @@ -1236,7 +1236,7 @@ def write(self, superstructure: bool = False, export_dir: str = None): index=False, ) - print(f"Scenario difference file exported to {filename}.csv!") + print(f"Scenario difference file exported to {filename}") print("") print("Writing superstructure database...") change_db_name(self.database, self.name or self.package.descriptor["name"])