Skip to content

Commit 1a37316

Browse files
authored
Fixed f-string issue in general.py
1 parent 06bf875 commit 1a37316

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sploitkit/base/commands/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run(self, text):
5555
t = BorderlessTable(data, "Matching modules")
5656
print_formatted_text(t.table)
5757
n = len(data) - 2
58-
self.logger.info(f"{n} match{["", "es"][n > 0]} found")
58+
self.logger.info(f"{n} match{['', 'es'][n > 0]} found")
5959

6060

6161
class Show(Command):

0 commit comments

Comments
 (0)