Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jun 28, 2023
1 parent 950978e commit 980b3d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

Version 0.3.5
=============

- Fix issue.


Version 0.3.4
=============

Expand Down
4 changes: 2 additions & 2 deletions src/flook/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def add(name, connection, ip, port, user, password, ssh_private_key_file, tags,
user,
password,
ssh_private_key_file.read() if ssh_private_key_file is not None else "",
tags.split(",") if "," in tags else [],
tags.split(",") if tags != "" else [],
None,
None,
)
Expand Down Expand Up @@ -164,7 +164,7 @@ def add(name, path, tags, force):
Recipes()
.init()
.add(
name, {"path": path, "tags": tags.split(",") if "," in tags else []}, force
name, {"path": path, "tags": tags.split(",") if tags != "" else []}, force
)
)

Expand Down

0 comments on commit 980b3d4

Please sign in to comment.