diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-29 05:52:43 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-29 05:52:43 +0000 |
commit | ddcde1bec206b25030e557302b91265591142076 (patch) | |
tree | f4cbf08c0befb9526ac4c446d8ad485e94e2d1fa | |
parent | e21c1b69d449c3c5248fe8fc97c37f3ae7b0d575 (diff) | |
download | ruby-ddcde1bec206b25030e557302b91265591142076.tar.gz ruby-ddcde1bec206b25030e557302b91265591142076.tar.xz ruby-ddcde1bec206b25030e557302b91265591142076.zip |
* ext/tk/sample/ttk_wrapper.rb: minor bug fix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/tk/sample/ttk_wrapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/sample/ttk_wrapper.rb b/ext/tk/sample/ttk_wrapper.rb index 30ae0ece5..ddae24019 100644 --- a/ext/tk/sample/ttk_wrapper.rb +++ b/ext/tk/sample/ttk_wrapper.rb @@ -134,7 +134,7 @@ ThemesList.uniq! # set theme of widget style ########################################################################## if OPTS[:list] || OPTS[:verbose] - print "supported theme names: #{ThemesList}\n" + print "supported theme names: #{ThemesList.inspect}\n" exit if OPTS[:list] && ARGV.empty? end print "use theme: \"#{OPTS[:theme]}\"\n" if OPTS[:theme] && OPTS[:verbose] |