Skip to content

Commit

Permalink
fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephTLucas committed Mar 15, 2024
1 parent a9f4aa6 commit 9601449
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "vger"
version = "0.2.3"
version = "0.2.4"
description = "An execution framework for Jupyter environments."
authors = ["Joseph Lucas <[email protected]>"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion vger/persist.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def export_console(self):
)
]
answer = inquirer.prompt(answer)
log_path = f"{answer["path"]}vger-{time.strftime("%Y%m%d-%H%M%S")}.log"
log_path = f"{answer['path']}vger-{time.strftime('%Y%m%d-%H%M%S')}.log"
try:
self.connection.con.save_text(log_path)
except PermissionError:
Expand Down

0 comments on commit 9601449

Please sign in to comment.