250 self.proxyBypassEdit.setText( |
250 self.proxyBypassEdit.setText( |
251 self.__config["http_proxy"]["no"]) |
251 self.__config["http_proxy"]["no"]) |
252 |
252 |
253 # step 5: extract host fingerprints |
253 # step 5: extract host fingerprints |
254 if "hostfingerprints" in self.__config: |
254 if "hostfingerprints" in self.__config: |
255 for host in self.__config["hostfingerprints"]: |
255 for host in self.__config.options("hostfingerprints"): |
256 QTreeWidgetItem(self.fingerprintsList, [ |
256 QTreeWidgetItem(self.fingerprintsList, [ |
257 host, |
257 host, |
258 self.__config["hostfingerprints"][host] |
258 self.__config["hostfingerprints"][host] |
259 ]) |
259 ]) |
260 self.__finalizeFingerprintsColumns() |
260 self.__finalizeFingerprintsColumns() |