Skip to content

Commit

Permalink
#4391 make it clearer what is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Oct 15, 2024
1 parent 6de9596 commit c16e721
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xpra/scripts/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3356,6 +3356,10 @@ def multimode(displays) -> int:
app.display_desc = display_desc
connect_to_server(app, display_desc, opts)
e = app.run()
except ImportError:
sys.stderr.write(f"Error: unable to use the {mode!r} subcommand:\n")
sys.stderr.write(" the 'xpra-client' component is not installed\n")
return ExitCode.COMPONENT_MISSING
finally:
if app:
app.cleanup()
Expand Down

0 comments on commit c16e721

Please sign in to comment.