Doc: Loader add note: about SMBHandler

This commit is contained in:
Qua-non 2012-08-16 20:19:50 +05:30
parent 75781d485b
commit 3f1aa3f0fb
1 changed files with 5 additions and 1 deletions

View File

@ -150,10 +150,14 @@ class LoaderBase(object):
proto = filename.split(':', 1)[0] proto = filename.split(':', 1)[0]
if proto == 'smb': if proto == 'smb':
try: try:
# note: it's important to load SMBHandler for every time
# otherwise the data is occasionaly not loaded
from smb.SMBHandler import SMBHandler from smb.SMBHandler import SMBHandler
except ImportError: except ImportError:
Logger.Info('Loader: PySMB not installed') Logger.warning(
'Loader: can not load PySMB: make sure it is installed')
return return
self._smb_initialized = True
import tempfile import tempfile
data = None data = None
try: try: