diff --git a/example/desktop_app.py b/example/desktop_app.py index 50dd1a2..17cb279 100644 --- a/example/desktop_app.py +++ b/example/desktop_app.py @@ -13,7 +13,7 @@ async def main(): # Connects to the 1Password desktop app. client = await Client.authenticate( auth=DesktopAuth( - account_name="YourAccountNameAsShownInTheDesktopApp" # Set to your 1Password account name. + account_name="YourAccountNameAsShownInTheDesktopApp" # Set to your 1Password account name as shown at the top left sidebar of the app. ), # Set the following to your own integration name and version. integration_name="My 1Password Integration", diff --git a/src/onepassword/desktop_core.py b/src/onepassword/desktop_core.py index bdf318a..6c8fca7 100644 --- a/src/onepassword/desktop_core.py +++ b/src/onepassword/desktop_core.py @@ -86,7 +86,7 @@ def call_shared_library(self, payload: str, operation_kind: str) -> bytes: ) if ret != 0: - raise RuntimeError(f"send_message failed with code {ret}. Please make sure the Desktop app integration setting is enabled, or contact 1Password support.") + raise RuntimeError(f"send_message failed with code {ret}. In the 1Password desktop app, make sure Settings > Developer > Integrate with other apps is enabled, or contact 1Password support.") # Copy bytes into Python data = ctypes.string_at(out_buf, out_len.value)