You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by cu...@apache.org on 2018/02/05 13:53:41 UTC

[whimsy] branch master updated: Fix ArgumentError with FILEMBOX % 08 09

This is an automated email from the ASF dual-hosted git repository.

curcuru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 6db15b8  Fix ArgumentError with FILEMBOX % 08 09
6db15b8 is described below

commit 6db15b8a366260d3f62bb7d18ec04dabbda1f979
Author: Shane Curcuru <as...@shanecurcuru.org>
AuthorDate: Mon Feb 5 08:53:35 2018 -0500

    Fix ArgumentError with FILEMBOX % 08 09
    
    ponyapi.rb:119:in `%': invalid value for Integer(): "08" (ArgumentError)
---
 tools/ponypoop.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ponypoop.rb b/tools/ponypoop.rb
index b848a9b..55958d7 100755
--- a/tools/ponypoop.rb
+++ b/tools/ponypoop.rb
@@ -188,7 +188,7 @@ end
 # ## ### #### ##### ######
 # Main method for command line use
 if __FILE__ == $PROGRAM_NAME
-  months = %w( 01 02 03 04 05 06 07 08 09 10 11 12 )
+  months = %w( 1 2 3 4 5 6 7 8 9 10 11 12 )
   years = %w( 2010 2011 2012 2013 2014 2015 2016 2017 )
   options = optparse
   options[:list] ||= 'board'

-- 
To stop receiving notification emails like this one, please contact
curcuru@apache.org.