File: tempfix_ftbfs.patch

package info (click to toggle)
intake 0.6.6-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,692 kB
  • sloc: python: 12,409; makefile: 37; sh: 14
file content (17 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: temp fix for FTBFS regarding sphinx doc generation
Author: Shayan Doust <hello@shayandoust.me>
Bug-Debian: https://bugs.debian.org/971177/
Last-Update: 2020-10-29
---

--- a/intake/__init__.py
+++ b/intake/__init__.py
@@ -60,6 +60,8 @@ def __getattr__(attr):
                 gl[attr] = mod
     if attr == "__all__":
         return __dir__()
+    if attr == '__mro__':
+        raise AttributeError
     try:
         return gl[attr]
     except KeyError: