-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix zope_interface and add python3 compatibility
The `zope.interface` module lacks of the __init__.py file in one of his folders, that leads into an ImportError: No module named zope.interface
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
The zope.interface module lacks of the __init__.py file in `zope` folder | ||
(once is installed), this patch creates that missing file. This seems to be | ||
caused during the installation process because that file exists in source | ||
files. | ||
diff -Naurp zope.orig/__init__.py zope/__init__.py | ||
--- zope.orig/__init__.py 1970-01-01 01:00:00.000000000 +0100 | ||
+++ zope/__init__.py 2019-02-05 11:29:22.666757227 +0100 | ||
@@ -0,0 +1 @@ | ||
+ |