Merge pull request #26736 from twangboy/fix_21256

Changed import from smbconnection to smb3
This commit is contained in:
Justin Findlay 2015-08-28 11:23:42 -06:00
commit 22dbce8d61

View file

@ -9,7 +9,7 @@ from __future__ import absolute_import
try:
import impacket.smbconnection
from impacket.smbconnection import SessionError
from impacket.smb3 import SessionError
HAS_IMPACKET = True
except ImportError:
HAS_IMPACKET = False