mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-19 14:54:41 +01:00
20 lines
572 B
Diff
20 lines
572 B
Diff
Description: Fix import elf_parser path in Kenshoto's__init__.py.
|
|
__init__.py for the Kenshoto ELF parser imports an ELF parser with a
|
|
statement that won't always work (when importing pyew as a module for
|
|
example).
|
|
Author: David Martínez Moreno <ender@debian.org>
|
|
Forwarded: no
|
|
Reviewed-By: David Martínez Moreno <ender@debian.org>
|
|
Last-Update: 2012-01-05
|
|
|
|
--- pyew-2.0.orig/Elf/__init__.py
|
|
+++ pyew-2.0/Elf/__init__.py
|
|
@@ -25,7 +25,7 @@ import traceback
|
|
import zlib
|
|
|
|
from stat import *
|
|
-from Elf.elf_lookup import *
|
|
+from elf_lookup import *
|
|
|
|
verbose = False
|
|
|