forked from p15670423/monkey
Import Windows specific modules only on Windows systems
This commit is contained in:
parent
4640a760ff
commit
b4708fc2cb
|
@ -1,3 +1,6 @@
|
|||
from monkey_island.cc.environment.utils import is_windows_os
|
||||
|
||||
if is_windows_os():
|
||||
import ntsecuritycon
|
||||
import win32api
|
||||
import win32con
|
||||
|
|
Loading…
Reference in New Issue