diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:23:46 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:23:46 +0000 |
commit | d9f8cf24628ad0021c84c0aabcacae868597bfa6 (patch) | |
tree | bf424095f9ebf1770b9ec38a5961b779d0cd4f99 /lib/custodian/worker.rb | |
parent | 4fc373ef8e3db10651f9215f78f4dea29c1474ee (diff) |
Remove spaces inside blocks.
Diffstat (limited to 'lib/custodian/worker.rb')
-rw-r--r-- | lib/custodian/worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index 701110e..e9a7532 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -93,7 +93,7 @@ module Custodian # Show a message on STDOUT if "--verbose" was specified. # def log_message(msg) - puts msg if ENV['VERBOSE' ] + puts msg if ENV['VERBOSE'] end |