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 c1ce96e commit ceb73fdCopy full SHA for ceb73fd
tmuxp/cli.py
@@ -191,9 +191,9 @@ def subcommand_convert(args):
191
file_user = os.path.join(config_dir, configfile)
192
file_cwd = os.path.join(cwd_dir, configfile)
193
if os.path.exists(file_cwd) and os.path.isfile(file_cwd):
194
- print file_cwd
+ print(file_cwd)
195
elif os.path.exists(file_user) and os.path.isfile(file_user):
196
- print file_uesr
+ print(file_user)
197
else:
198
logger.error('%s not found.' % configfile)
199
0 commit comments