summaryrefslogtreecommitdiff
path: root/lib/custodian/settings.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-02-18 10:29:39 +0000
committerSteve Kemp <steve@steve.org.uk>2015-02-18 10:29:39 +0000
commitf08f62c52ca84e76ca21bbc844356f63b1890561 (patch)
tree647470ded212b088ebe3b4931ca05ed82436e8b9 /lib/custodian/settings.rb
parentce041875b331c6cd4d308e7da550f5aca265c53e (diff)
Minor commenting/whitespace fixups.
No functional changes.
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r--lib/custodian/settings.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb
index bef2977..b2bdb04 100644
--- a/lib/custodian/settings.rb
+++ b/lib/custodian/settings.rb
@@ -8,8 +8,8 @@ require 'singleton'
#
# The configuration file is optional, and we have defaults for every value.
#
-# This class is a singleton to avoid having to re-parse the configuration file more than
-# once per program-launch.
+# This class is a singleton to avoid having to re-parse the configuration
+# file more than once per program-launch.
#
module Custodian
@@ -48,7 +48,7 @@ module Custodian
#
# Load and "parse" the key=value content.
#
- File.open( file, "r").each_line do |line|
+ File.open( file, "r" ).each_line do |line|
next if ( line.nil? || line =~ /^#/ )
if ( line =~ /^(.*)=(.*)$/ )
key = $1.dup