Remove erroneous self.cmd = None

This commit is contained in:
Bob Lantz
2014-12-04 09:03:46 -08:00
parent 4d55ef1132
commit 8c37975d44
+1 -1
View File
@@ -145,7 +145,7 @@ class RemoteMixin( object ):
self.sshcmd = []
self.isRemote = False
# Satisfy pylint
self.shell, self.pid, self.cmd = None, None, None
self.shell, self.pid = None, None
super( RemoteMixin, self ).__init__( name, **kwargs )
@staticmethod