Skip to content

Commit c6cb736

Browse files
authored
Fixed f-string issue in project.py
1 parent 1a37316 commit c6cb736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sploitkit/base/commands/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def complete_values(self):
7070
return [x.stem for x in self.workspace.iterfiles(".zip")]
7171

7272
def run(self, project):
73-
self.logger.debug(f"Loading archive '{project+ ".zip"}'...")
73+
self.logger.debug(f"Loading archive '{project}.zip'...")
7474
projpath = Path(self.workspace).joinpath(project)
7575
archive = ProjectPath(projpath.with_suffix(".zip"))
7676
ask = self.console.config.option("ENCRYPT_PROJECT").value

0 commit comments

Comments
 (0)