Skip to content

Commit 20f8f9b

Browse files
committed
fixed typo in logging file
1 parent d0eb14c commit 20f8f9b

3 files changed

Lines changed: 149 additions & 149 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sshsync"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
description = "sshsync is a CLI tool to run shell commands across multiple servers via SSH, either on specific groups or all servers. Upcoming features include file push/pull support."
55
readme = "README.md"
66
authors = [

src/sshsync/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def get_log_path() -> Path:
1313
else:
1414
log_dir = home.joinpath(".local", "state", "sshsync")
1515

16-
if not log_dir:
16+
if not log_dir.exists():
1717
log_dir.mkdir(exist_ok=True, parents=True)
1818
return log_dir
1919

0 commit comments

Comments
 (0)