Commit 178a4ab5 authored by Jason R. Coombs's avatar Jason R. Coombs

Patched test so it can be run on Python 3

parent 1bc7b7b3
......@@ -5,6 +5,11 @@ import zipfile
import pkg_resources
try:
unicode
except NameError:
unicode = str
class EggRemover(unicode):
def __call__(self):
if self in sys.path:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment