From a3ec7115f15e57fec50c96ccebcd4e6b13e130b6 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Tue, 4 Aug 2015 10:28:53 +0200 Subject: [PATCH] Minor fix in OAI-PMH. --- apps/oai/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oai/handlers.py b/apps/oai/handlers.py index 197ca7987..d9699f9fe 100644 --- a/apps/oai/handlers.py +++ b/apps/oai/handlers.py @@ -110,7 +110,7 @@ class Catalogue(common.ResumptionOAIPMH): def identify(self, **kw): ident = common.Identify( 'Wolne Lektury', # generate - '%s/oaipmh' % WL_BASE, # generate + '%s/oaipmh' % unicode(WL_BASE), # generate '2.0', # version [m[1] for m in settings.MANAGERS], # adminEmails make_time_naive(self.earliest_datestamp), # earliest datestamp of any change -- 2.20.1