X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/967eed676fc83d15b26149047f353ac61faa8217..4bf7a487910abd0487983e85722d134aa9bb95fe:/src/stats/utils.py?ds=sidebyside

diff --git a/src/stats/utils.py b/src/stats/utils.py
index eba720224..109e2bbe2 100644
--- a/src/stats/utils.py
+++ b/src/stats/utils.py
@@ -1,12 +1,11 @@
-# -*- coding: utf-8 -*-
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django.conf import settings
 from datetime import datetime
 import logging
 from functools import update_wrapper
-import urllib
+from urllib.parse import urlencode
 from random import random
 from inspect import isclass
 
@@ -18,7 +17,7 @@ logger = logging.getLogger(__name__)
 
 
 def piwik_url(request):
-    return urllib.urlencode(dict(
+    return urlencode(dict(
         idsite=getattr(settings, 'PIWIK_SITE_ID', '0'),
         rec=1,
         url=force_bytes('http://%s%s' % (request.META['HTTP_HOST'], request.path)),