Skip to content

Commit

Permalink
Cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
maouw committed Sep 21, 2023
1 parent 146fe21 commit 68ad311
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hyakvnc/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,11 @@ def print_connection_string(job_id: Optional[int] = None, instance: Optional[Hya
assert instance is not None, "Could not find instance"

print("OpenSSH string for VNC session:")
print(" " + instance.get_openssh_connection_string(login_host=app_config.ssh_host, apple=False)
print(" " + instance.get_openssh_connection_string(login_host=app_config.ssh_host, apple=False))
print("OpenSSH string for VNC session on macOS:")
print(" " + instance.get_openssh_connection_string(login_host=app_config.ssh_host, apple=True))


def create_arg_parser():
parser = argparse.ArgumentParser(description='HyakVNC: VNC on Hyak', prog="hyakvnc")
subparsers = parser.add_subparsers(dest='command')
Expand Down

0 comments on commit 68ad311

Please sign in to comment.