We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1bbc1e commit be008e6Copy full SHA for be008e6
1 file changed
youtube_dl/YoutubeDL.py
@@ -2635,12 +2635,12 @@ def msg(fmt, lbl):
2635
self.to_screen(msg('[info] %s is already present', label.title()))
2636
return 'exists'
2637
else:
2638
- self.to_screen(msg('[info] Writing %s as JSON to: ' + infofn, label))
+ self.to_screen(msg('[info] Writing %s as JSON to: ', label) + infofn)
2639
try:
2640
write_json_file(self.filter_requested_info(info_dict), infofn)
2641
return True
2642
except (OSError, IOError):
2643
- self.report_error(msg('Cannot write %s to JSON file ' + infofn, label))
+ self.report_error(msg('Cannot write %s to JSON file ', label) + infofn)
2644
return
2645
2646
def _write_thumbnails(self, info_dict, filename):
0 commit comments