Skip to content
Snippets Groups Projects
Commit d23d4082 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

ignore a crypto module from demandimport to make it work under windows

parent 25be6895
No related branches found
No related tags found
No related merge requests found
......@@ -63,12 +63,13 @@ if os.name == 'nt':
os.environ['PATH'] = ';'.join(new_list)
from common import demandimport
demandimport.enable()
#demandimport.enable()
demandimport.ignore += ['gobject._gobject', 'libasyncns', 'i18n',
'logging.NullHandler', 'dbus.glib', 'dbus.service',
'command_system.implementation.standard',
'command_system.implementation.execute', 'OpenSSL.SSL', 'OpenSSL.crypto',
'common.sleepy', 'DLFCN', 'dl', 'xml.sax', 'xml.sax.handler', 'ic']
'common.sleepy', 'DLFCN', 'dl', 'xml.sax', 'xml.sax.handler', 'ic',
'Crypto.PublicKey']
if os.name == 'nt':
import locale
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment