Skip to content

Commit

Permalink
Cast int to string
Browse files Browse the repository at this point in the history
Fix  #224
  • Loading branch information
Jip-Hop committed Jul 9, 2024
1 parent 2d3ae20 commit bbd0157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jlmkr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ def create_jail(**kwargs):
value = kwargs.pop(option)
if (
value is not None
and len(value)
and len(str(value))
and value is not config.my_get(option, None)
):
# TODO: this will wipe all systemd_nspawn_user_args from the template...
Expand Down

0 comments on commit bbd0157

Please sign in to comment.