Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion git-passport.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-


Expand Down
6 changes: 5 additions & 1 deletion passport/case.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

# ..................................................................... Imports
import time
import urllib.parse
#import urllib.parse
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse

from . import (
configuration,
Expand Down