Skip to content

Commit ceb73fd

Browse files
committed
print()
1 parent c1ce96e commit ceb73fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tmuxp/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ def subcommand_convert(args):
191191
file_user = os.path.join(config_dir, configfile)
192192
file_cwd = os.path.join(cwd_dir, configfile)
193193
if os.path.exists(file_cwd) and os.path.isfile(file_cwd):
194-
print file_cwd
194+
print(file_cwd)
195195
elif os.path.exists(file_user) and os.path.isfile(file_user):
196-
print file_uesr
196+
print(file_user)
197197
else:
198198
logger.error('%s not found.' % configfile)
199199

0 commit comments

Comments
 (0)