diff --git a/salt/fileserver/minionfs.py b/salt/fileserver/minionfs.py index 7fa3b84d77..599d032dcc 100644 --- a/salt/fileserver/minionfs.py +++ b/salt/fileserver/minionfs.py @@ -9,13 +9,6 @@ The backend for serving files pushed to master by cp.push (file_recv). import os import logging -try: - import fcntl - HAS_FCNTL = True -except ImportError: - # fcntl is not available on windows - HAS_FCNTL = False - # Import salt libs import salt.fileserver import salt.utils