From 0ad183c284d0cf5305a5de6df25035be46d52faf Mon Sep 17 00:00:00 2001 From: Oleksii Shevchuk Date: Tue, 4 Apr 2017 17:06:03 +0300 Subject: [PATCH] Subclass PupyPackageFinder from object --- pupy/packages/all/pupyimporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pupy/packages/all/pupyimporter.py b/pupy/packages/all/pupyimporter.py index 19d1ac87..18e333df 100644 --- a/pupy/packages/all/pupyimporter.py +++ b/pupy/packages/all/pupyimporter.py @@ -304,7 +304,7 @@ class PupyPackageLoader: class PupyPackageFinderImportError(ImportError): pass -class PupyPackageFinder: +class PupyPackageFinder(object): def __init__(self, path=None): if path and not path.startswith('pupy://'): raise PupyPackageFinderImportError()