Skip to content

Commit

Permalink
Merge pull request #553 from launchableinc/fix-no-newline
Browse files Browse the repository at this point in the history
Fix no newline
  • Loading branch information
shibuiwilliam authored Apr 2, 2023
2 parents 230c59c + 364de54 commit 727cb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launchable/commands/record/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def session(
if print_session:
# what we print here gets captured and passed to `--session` in
# later commands
click.echo("{}/{}".format(sub_path, session_id))
click.echo("{}/{}".format(sub_path, session_id), nl=False)

except Exception as e:
if os.getenv(REPORT_ERROR_KEY):
Expand Down

0 comments on commit 727cb1f

Please sign in to comment.