def showHostSelector(self): hs = HostSelector(self) hs.setServiceFilter( ServiceList(Service.recordByName( 'Nuke' )) ) hs.setHostList( self.HostList ) if hs.exec_() == QDialog.Accepted: self.HostList = hs.hostStringList() del hs
def showHostSelector(self): hs = HostSelector(self) hs.setServiceFilter(Service.select("service ~ 'RealFlow'")) hs.setHostList(self.HostList) if hs.exec_() == QDialog.Accepted: self.HostList = hs.hostStringList() del hs
def showHostSelector(self): hs = HostSelector(self) hs.setServiceFilter( Service.select( "service ~ 'RealFlow'" )) hs.setHostList( self.HostList ) if hs.exec_() == QDialog.Accepted: self.HostList = hs.hostStringList() del hs