[mypy/fix] Module 'urllib' has no attribute 'quote'
authorLaurent Peuch <cortex@worlddomination.be>
Thu, 19 Dec 2019 00:59:27 +0100
changeset 12827 5d1568572895
parent 12826 c13c0188f8a3
child 12828 dadbd4148a44
[mypy/fix] Module 'urllib' has no attribute 'quote'
cubicweb/devtools/cwtwill.py
--- a/cubicweb/devtools/cwtwill.py	Thu Dec 19 08:13:52 2019 +0100
+++ b/cubicweb/devtools/cwtwill.py	Thu Dec 19 00:59:27 2019 +0100
@@ -20,7 +20,7 @@
 """
 
 import re
-from urllib import quote
+from urllib.parse import quote
 
 from twill import commands as twc