Skip to content

Commit

Permalink
Convert posix path to string
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauch committed Aug 4, 2023
1 parent afa3361 commit f8b837f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/catmux_create_session
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def main():
with resources.path(
".".join(["catmux", "resources"]), "tmux_default.conf"
) as catmux_session:
tmux_config = catmux_session
tmux_config = str(catmux_session)

print("Using tmux config file: {}".format(tmux_config))
command += ["-f", tmux_config]
Expand Down

0 comments on commit f8b837f

Please sign in to comment.