We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19bfddd commit ef162ddCopy full SHA for ef162dd
MacAttack.pyw
@@ -4202,8 +4202,10 @@ class MacAttack(QMainWindow):
4202
# Replace the grid with the list for the file
4203
if include_genres and titles_str and titles_grid:
4204
result_message = result_message.replace(titles_grid, orig_genres)
4205
- result_message = result_message.replace(vods_grid, orig_vods)
4206
logging.debug("Replacing playlist grid with list for file")
+ if include_vod and vod_str and vods_grid:
4207
+ result_message = result_message.replace(vods_grid, orig_vods)
4208
+ logging.debug("Replacing vod grid with list for file")
4209
self.output_file.write(result_message + "\n")
4210
self.output_file.flush()
4211
0 commit comments