carriage return should be at front-of-line so count survives errors
authorShawn Boyette <sboyette@esilibrary.com>
Thu, 18 Sep 2008 00:21:12 +0000 (00:21 +0000)
committerShawn Boyette <sboyette@esilibrary.com>
Thu, 18 Sep 2008 00:21:12 +0000 (00:21 +0000)
fingerprinter

index cbcc9f9..6516e82 100755 (executable)
@@ -332,7 +332,7 @@ sub initialize {
 
 sub progress_ticker {
     return if $conf->{quiet};
-    printf("> %d (%d/s)\r", $count, ($count / (time - $start + 1)))
+    printf("\r> %d (%d/s)", $count, ($count / (time - $start + 1)))
       if ($count % 100 == 0);
 }