Skip to content

Commit c1af093

Browse files
f of f-string was missing
1 parent 20b67c6 commit c1af093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smodels/experiment/databaseObj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def loadDatabase(self):
473473
self.loadBinaryFile(lastm_only=False)
474474
except Exception as e:
475475
import traceback
476-
logger.error ( "when loading database: {e}, {traceback.format_exc()}" )
476+
logger.error ( f"when loading database: {e}, {traceback.format_exc()}" )
477477
sys.exit(-1)
478478

479479
def loadTextDatabase(self):

0 commit comments

Comments
 (0)