From 2c4f03ba2ab4df3c404e346d92c2ac719f43c17a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Guido=20G=C3=BCnther?= Date: Wed, 27 Jan 2016 07:38:45 +0100 Subject: [PATCH] Drop version from basic auth realm otherwise we get a password prompt on each version upgrade in e.g. iceowl. --- calypso/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calypso/__init__.py b/calypso/__init__.py index f99588a..19b52ee 100644 --- a/calypso/__init__.py +++ b/calypso/__init__.py @@ -88,7 +88,7 @@ def _check(request, function): request.send_calypso_response(client.UNAUTHORIZED, 0) request.send_header( "WWW-Authenticate", - "Basic realm=\"Calypso %s - password required\"" % VERSION) + 'Basic realm="Calypso CalDAV/CardDAV server - password required"') request.end_headers() # pylint: enable=W0212 -- 2.34.1