about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-11-27 13:11:06 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2012-11-27 13:11:06 +0100
commit97cd3afc7525394c46398f1526d412d081c02085 (patch)
tree22a6fd799c44e21b3f1c740660101b15b887d71e
parentaa2a94ed81857705e0fc0765cb884ed58fbdf5a5 (diff)
downloadyoutube-dl-97cd3afc7525394c46398f1526d412d081c02085.tar.gz
youtube-dl-97cd3afc7525394c46398f1526d412d081c02085.tar.xz
youtube-dl-97cd3afc7525394c46398f1526d412d081c02085.zip
warn if %(stitle)s is being used
-rw-r--r--youtube_dl/FileDownloader.py3
-rw-r--r--youtube_dl/__init__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index dce1a23a4..b6aebe4ac 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -94,6 +94,9 @@ class FileDownloader(object):
 		self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
 		self.params = params
 
+		if '%(stitle)s' in self.params['outtmpl']:
+			self.to_stderr(u'WARNING: %(stitle)s is deprecated. Use the %(title)s and the --restrict-filenames flag(which also secures %(uploader)s et al) instead.')
+
 	@staticmethod
 	def format_bytes(bytes):
 		if bytes is None:
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index c3e0f78e5..7cc17af93 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -532,7 +532,7 @@ def _real_main():
 			parser.error(u'you must provide at least one URL')
 		else:
 			sys.exit()
-	
+
 	try:
 		retcode = fd.download(all_urls)
 	except MaxDownloadsReached: