From: Don Armstrong <don@donarmstrong.com>
Date: Tue, 29 Apr 2008 00:17:28 +0000 (+0000)
Subject:  * fix failure to increment row
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=61c00d596b5799501d041fb407a70dd2b0e3c265;p=bin.git

 * fix failure to increment row
---

diff --git a/convert_to_xls b/convert_to_xls
index ff6bd6d..1e75b66 100755
--- a/convert_to_xls
+++ b/convert_to_xls
@@ -87,6 +87,7 @@ for my $file (@FILES) {
 	  for my $col (0..$#row) {
 	       $ws->write($row,$col+1,$row[$col]);
 	  }
+	  $row++;
      }
 }
 $wb->close;