Skip to content

Commit

Permalink
new import structure
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 12, 2014
1 parent 2333015 commit 5dcc124
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/quorum/legacy.py
Expand Up @@ -61,17 +61,17 @@

root = sys.path.pop(0)
try: import urllib.error
except ImportError: urllib.error = None
except ImportError: pass
finally: sys.path.insert(0, root)

root = sys.path.pop(0)
try: import urllib.request
except ImportError: urllib.request = None
except ImportError: pass
finally: sys.path.insert(0, root)

root = sys.path.pop(0)
try: import http.client
except ImportError: http.client = None
except ImportError: pass
finally: sys.path.insert(0, root)

try: import HTMLParser
Expand Down

0 comments on commit 5dcc124

Please sign in to comment.