three small edits
authorFilippo Valsorda <filippo.valsorda@gmail.com>
Mon, 31 Dec 2012 18:09:37 +0000 (19:09 +0100)
committerFilippo Valsorda <filippo.valsorda@gmail.com>
Mon, 31 Dec 2012 18:12:57 +0000 (19:12 +0100)
* ask for a --verbose log when reporting bugs in README.md
* re-enable Escapist test, seems stable now
* check that we are not downloading multiple videos when the template is fixed (NOT a complete fix: not detecting playlists)

README.md
test/tests.json
youtube_dl/FileDownloader.py

index 993aef49ea3872068b70cab7a9683035e1f3eda9..b3cd9a38cfdfb1eb51ca44e24a53568ff7fd5fae 100644 (file)
--- a/README.md
+++ b/README.md
@@ -196,7 +196,8 @@ Bugs and suggestions should be reported at: <https://github.com/rg3/youtube-dl/i
 
 Please include:
 
-* Your exact command line, like `youtube-dl -t "http://www.youtube.com/watch?v=uHlDtZ6Oc3s&feature=channel_video_title"`. If possible re-run the command with `--verbose`, it is really helpful. A common mistake is not to escape the `&`. Putting URLs in quotes should solve this problem.
+* Your exact command line, like `youtube-dl -t "http://www.youtube.com/watch?v=uHlDtZ6Oc3s&feature=channel_video_title"`. A common mistake is not to escape the `&`. Putting URLs in quotes should solve this problem.
+* If possible re-run the command with `--verbose`, and include the full output, it is really helpful to us.
 * The output of `youtube-dl --version`
 * The output of `python --version`
 * The name and version of your Operating System ("Ubuntu 11.04 x64" or "Windows 7 x64" is usually enough).
index c2de6099d20b903c7d0153e07c2be1a870ad2541..982e0ad3b5c5ea0ca0170dd2d348bd8c054ec2a3 100644 (file)
@@ -95,8 +95,7 @@
     "name": "Escapist",
     "url": "http://www.escapistmagazine.com/videos/view/the-escapist-presents/6618-Breaking-Down-Baldurs-Gate",
     "file": "6618-Breaking-Down-Baldurs-Gate.flv",
-    "md5": "c6793dbda81388f4264c1ba18684a74d",
-    "skip": "Fails with timeout on Travis"
+    "md5": "c6793dbda81388f4264c1ba18684a74d"
   },
   {
     "name": "GooglePlus",
index d9a4ecd3a99c2127105d5ce3f87a4fe038fa1040..53c68237b8ba5d44b9c612099e84ffa0654852b8 100644 (file)
@@ -493,6 +493,10 @@ class FileDownloader(object):
 
                 # Extract information from URL and process it
                 videos = ie.extract(url)
+
+                if len(videos) > 1 and self.fixed_template():
+                    raise SameFileError(self.params['outtmpl'])
+
                 for video in videos or []:
                     video['extractor'] = ie.IE_NAME
                     try: