Commit 1d2034c1363fe1fb5a040bff1ea72b467a6bd9e5

Authored by Imanol-Mikel Barba Sabariego
1 parent a33f42ce

Fixed crash

Showing 1 changed file with 2 additions and 2 deletions
digger.py
... ... @@ -105,7 +105,7 @@ if __name__ == "__main__":
105 105 if ans == "abort":
106 106 showFinishDialog(False)
107 107 elif ans == "continue":
108   - logger.msgLog("Skipping module " + module, "digger", logger.TYPE_INFO)
  108 + logger.msgLog("Skipping module " + module[0], "digger", logger.TYPE_INFO)
109 109 break
110 110 else:
111 111 logger.msgLog("Selected modules: " + repr(tags), "digger", logger.TYPE_INFO)
... ... @@ -136,4 +136,4 @@ if __name__ == "__main__":
136 136 #logger.msgLog(traceback.format_exc(), module.name, logger.TYPE_ERROR)
137 137  
138 138  
139   - showFinishDialog(True)
140 139 \ No newline at end of file
  140 + showFinishDialog(True)
... ...