From 29bbbbae03582873892c72698151c4e5c6fb7687 Mon Sep 17 00:00:00 2001
From: LETORT Sebastien <sebastien.letort@irisa.fr>
Date: Tue, 28 Jan 2020 14:26:28 +0100
Subject: [PATCH] [code]correction in a message error.

---
 allgo/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/allgo/__init__.py b/allgo/__init__.py
index 3e901a9..b881109 100644
--- a/allgo/__init__.py
+++ b/allgo/__init__.py
@@ -438,7 +438,7 @@ class Client:
 
         # method with os.fdopen(os.open(outfilepath, mode), 'w') doesn't exist
         if os.path.isfile(outfilepath) and not force:
-            msg = "file {} exists."
+            msg = "file {} exists.".format(outfilepath)
             raise OSError(errno.EEXIST, msg)
 
         try:
-- 
GitLab