Remove unused fcntl checks.

This commit is contained in:
Pedro Algarvio 2014-02-18 08:56:59 +00:00
parent 504b7100e1
commit 8a7f085477

View File

@ -9,13 +9,6 @@ The backend for serving files pushed to master by cp.push (file_recv).
import os import os
import logging import logging
try:
import fcntl
HAS_FCNTL = True
except ImportError:
# fcntl is not available on windows
HAS_FCNTL = False
# Import salt libs # Import salt libs
import salt.fileserver import salt.fileserver
import salt.utils import salt.utils