Browse Source

print mirror list in verbose log

master
Nils 2 years ago
parent
commit
140d02afe3
  1. 3
      qtgui/chooseDownloadDirectory.py

3
qtgui/chooseDownloadDirectory.py

@ -253,6 +253,9 @@ class ChooseDownloadDirectory(QtWidgets.QDialog):
indexDict["mirrors"].append("http://0.0.0.0:8000/") #TODO: Development indexDict["mirrors"].append("http://0.0.0.0:8000/") #TODO: Development
logger.info(f"Mirror list for downloads: {indexDict['mirrors']}")
#Test if there is enough disk space #Test if there is enough disk space
required = indexDict["filesize"] required = indexDict["filesize"]
freeSpace = disk_usage(self.ui.pathComboBox.currentText()).free freeSpace = disk_usage(self.ui.pathComboBox.currentText()).free

Loading…
Cancel
Save