Skip to content

Commit

Permalink
Restore python3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vetal4444 committed Jan 16, 2015
1 parent 1d2fe69 commit 28f41bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pusher/__init__.py
Expand Up @@ -14,7 +14,10 @@
from urllib import quote
import re
import socket
import urlparse
try:
import urlparse
except ImportError:
import urllib.parse as urlparse

if sys.version < '3':
text_type = unicode
Expand Down

0 comments on commit 28f41bf

Please sign in to comment.