Parcourir la source

Merge branch 'master' of https://github.com/notcammy/PyInstaLive

Cammy il y a 6 ans
Parent
commit
73d76ae895
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      pyinstalive/startup.py

+ 2 - 2
pyinstalive/startup.py

@@ -6,7 +6,7 @@ import platform
 import subprocess
 
 try:
-    from urllib.parse import urlparse
+    import urlparse
     import pil
     import auth
     import logger
@@ -16,7 +16,7 @@ try:
     import dlfuncs
     from constants import Constants
 except ImportError:
-    from urlparse import urlparse
+    from urllib.parse import urlparse
     from . import pil
     from . import auth
     from . import logger