File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 8888 # DISTROS: debian
8989 # STRATEGY: linear
9090
91- Vanilla_280_27 :
91+ Ansible_280_27 :
9292 python.version : ' 2.7'
9393 MODE : ansible
9494 VER : 2.8.0
9595 DISTROS : debian
96+
97+ Ansible_280_35 :
98+ python.version : ' 3.5'
99+ MODE : ansible
100+ VER : 2.8.0
101+ DISTROS : debian
Original file line number Diff line number Diff line change @@ -760,7 +760,12 @@ def _setup_imports(self):
760760 for fullname , _ , _ in self .module_map ['custom' ]:
761761 mitogen .core .import_module (fullname )
762762 for fullname in self .module_map ['builtin' ]:
763- mitogen .core .import_module (fullname )
763+ try :
764+ mitogen .core .import_module (fullname )
765+ except ImportError :
766+ # TODO: this is a huge hack to work around issue #590.
767+ if fullname != 'ansible.module_utils.distro._distro' :
768+ raise
764769
765770 def _setup_excepthook (self ):
766771 """
You can’t perform that action at this time.
0 commit comments