summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-09 10:38:54 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-09 10:38:54 +0200
commit061b2889a9a5a13c6c180932ea742975cdb02948 (patch)
treeaddd365fc409e2feb4b6faa8bf2dbee34272d749
parent8963d9c2661b7de8832b7afcf1cdbc197275d8e3 (diff)
downloadyoutube-dl-061b2889a9a5a13c6c180932ea742975cdb02948.tar.gz
youtube-dl-061b2889a9a5a13c6c180932ea742975cdb02948.tar.xz
youtube-dl-061b2889a9a5a13c6c180932ea742975cdb02948.zip
Fix the minutes part in FileDownloader.format_seconds (fixed #1397)
It printed for the minutes the result of (seconds // 60)
-rw-r--r--youtube_dl/FileDownloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index 7c5ac4bc2..0b5a5d77d 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -66,7 +66,7 @@ class FileDownloader(object):
     @staticmethod
     def format_seconds(seconds):
         (mins, secs) = divmod(seconds, 60)
-        (hours, eta_mins) = divmod(mins, 60)
+        (hours, mins) = divmod(mins, 60)
         if hours > 99:
             return '--:--:--'
         if hours == 0: