We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b2ea42 commit 9680a4dCopy full SHA for 9680a4d
src/tmuxp/workspace/finders.py
@@ -191,8 +191,8 @@ def find_workspace_file(
191
]
192
if not len(candidates):
193
file_error = (
194
- f"workspace-file not found in workspace dir (yaml/yml/json) {workspace_dir} "
195
- "for name"
+ "workspace-file not found "
+ + f"in workspace dir (yaml/yml/json) {workspace_dir} for name"
196
)
197
else:
198
candidates = [
@@ -207,7 +207,8 @@ def find_workspace_file(
207
if len(candidates) > 1:
208
tmuxp_echo(
209
Fore.RED
210
- + f"Multiple .tmuxp.{{yml,yaml,json}} workspace_files in {dirname(workspace_file)}"
+ + "Multiple .tmuxp.{yml,yaml,json} workspace_files in "
211
+ + dirname(workspace_file)
212
+ Fore.RESET,
213
214
0 commit comments