diff options
Diffstat (limited to 'youtube_dl/FileDownloader.py')
| -rw-r--r-- | youtube_dl/FileDownloader.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 1fdd2071f..a7997c4f2 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -327,6 +327,7 @@ class FileDownloader(object):  			template_dict = dict(info_dict)  			template_dict['epoch'] = unicode(int(time.time()))  			template_dict['autonumber'] = unicode('%05d' % self._num_downloads) +			template_dict = dict((key, u'NA' if val is None else val) for key, val in template_dict.items())  			filename = self.params['outtmpl'] % template_dict  			return filename  		except (ValueError, KeyError), err: | 
