diff --git a/ddpui/core/reports/report_service.py b/ddpui/core/reports/report_service.py index a02d0bc26..032ea15c4 100644 --- a/ddpui/core/reports/report_service.py +++ b/ddpui/core/reports/report_service.py @@ -806,7 +806,7 @@ def get_sharing_status(snapshot_id: int, org: Org, orguser: OrgUser) -> dict: snapshot = ReportService.get_snapshot(snapshot_id, org) if snapshot.created_by != orguser: - raise SnapshotPermissionError("Only report creators can view sharing settings") + raise SnapshotPermissionError("Only Report creators can share with others") response_data = { "is_public": snapshot.is_public,