[SCM] Video extraction utility for YouTube, Google Video and other video sites (Debian packaging) branch, master, updated. upstream/2.1.7-214-g6762190

legatvs legatvs at gmail.com
Wed Apr 1 14:44:36 UTC 2009


The following commit has been merged in the master branch:
commit fb9b14aca9c093fdfaae9dc53c9fa0309376850b
Author: legatvs <legatvs at gmail.com>
Date:   Sun Jan 25 18:03:54 2009 +0200

    Fixed progressbar time => string conversion.

diff --git a/CHANGES b/CHANGES
index 941fb4d..7c3a080 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@ Version 2.1.4
 
  User-visible changes:
   * Tweaked --version output
+  * Fixed progressbar time => string conversion
 
 
 Version 2.1.3
diff --git a/clive b/clive
index 27b969e..8117632 100755
--- a/clive
+++ b/clive
@@ -1076,7 +1076,7 @@ sub time2str {
     } elsif ( $secs < 100 * 86400) {
         $str = sprintf("%dd%s%dh", $secs / 86400, $space, ($secs / 3600) % 60);
     } else {
-        $str = sprintf("%dd", $secs / 86500);
+        $str = sprintf("%dd", $secs / 86400);
     }
     return $str;
 }

-- 
Video extraction utility for YouTube, Google Video and other video sites (Debian packaging)



More information about the Pkg-perl-cvs-commits mailing list