PEP8: fix E271: multiple spaces after keyword
[samba.git] / python / samba / compat.py
index 3fdeec886a650a8dc8a2425c5726184674598e65..aa1ac29136f7848be041a9ebaf03f6b3523378e9 100644 (file)
@@ -33,7 +33,7 @@ if PY3:
 
         return (x > y) - (x < y)
     # compat functions
-    from  urllib.parse import quote as urllib_quote
+    from urllib.parse import quote as urllib_quote
     from urllib.request import urlopen as urllib_urlopen
     from functools import cmp_to_key as cmp_to_key_fn