Add slash between hostname and port

This commit is contained in:
Eric Torres 2019-04-24 09:20:48 -07:00
parent 9b9744ad1d
commit 91996e3d96

View File

@ -141,7 +141,7 @@ if __name__ == "__main__":
dest = (
args.repository
if args.remote_host is None
else f"{args.remote_host}@{os.getlogin()}:{args.port}{args.repository}"
else f"{args.remote_host}@{os.getlogin()}:{args.port}/{args.repository}"
)
syslog.debug(f"Repository destination: {dest}")