Skip to content
Snippets Groups Projects
Commit 54a2e4f5 authored by Dicson's avatar Dicson
Browse files

fix for demandimport

parent 4cffef6b
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,7 @@ try:
SystemParametersInfo = ctypes.windll.user32.SystemParametersInfoW
else: # unix
from common import idle
idle.xss_available
except Exception:
gajim.log.debug('Unable to load idle module')
SUPPORTED = False
......
......@@ -39,7 +39,8 @@ from common import demandimport
demandimport.enable()
demandimport.ignore += ['gobject._gobject', 'libasyncns', 'i18n',
'logging.NullHandler', 'dbus.glib', 'dbus.service',
'command_system.implementation.standard', 'OpenSSL.SSL', 'OpenSSL.crypto']
'command_system.implementation.standard', 'OpenSSL.SSL', 'OpenSSL.crypto',
'common.sleepy']
import os
import sys
......
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