search for: old_url

Displaying 1 result from an estimated 1 matches for "old_url".

Did you mean: old_cr3
2009 Dec 21
2
[PATCH] Fixed errors when the user selects a different remove libvirt host.
...#39;' return self.__conn + def get_url(self): + return self.__url + def open_connection(self, url): '''Lets the user change the url for the connection.''' - self.__conn = libvirt.open(url) + old_conn = self.__conn + old_url = self.__url + try: + self.__conn = libvirt.open(url) + self.__url = url + set_default_url(url) + except Exception, error: + self.__conn = old_conn + self.__url = old_url + raise error def list_domains(self, d...