View | Details | Raw Unified | Return to bug 38346
Collapse All | Expand All

(-)a/ucs-4.0-2/management/univention-management-console/src/univention/management/console/protocol/session.py (-1 / +2 lines)
 Lines 260-269   def shutdown(self): Link Here 
260
	def __del__(self):
260
	def __del__(self):
261
		CORE.process('Processor: dying')
261
		CORE.process('Processor: dying')
262
		for process in self.__processes.values():
262
		for process in self.__processes.values():
263
			#process.__del__()  # calling this will cause python notifier to fail hard! Bug #37457
263
			process.__del__()
264
			del process
264
			del process
265
		if self.lo:
265
		if self.lo:
266
			self.lo.lo.lo.unbind()  # close the connection to LDAP
266
			self.lo.lo.lo.unbind()  # close the connection to LDAP
267
			self.lo = None
267
268
268
	def get_module_name(self, command):
269
	def get_module_name(self, command):
269
		"""Returns the name of the module that provides the given command
270
		"""Returns the name of the module that provides the given command

Return to bug 38346