summaryrefslogtreecommitdiffstats
path: root/lib/facter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/facter.rb')
-rw-r--r--lib/facter.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/facter.rb b/lib/facter.rb
index 18e43c1..c147673 100644
--- a/lib/facter.rb
+++ b/lib/facter.rb
@@ -151,15 +151,15 @@ module Facter
def self.debugging(bit)
if bit
case bit
- when TrueClass: @@debug = 1
- when FalseClass: @@debug = 0
- when Fixnum:
+ when TrueClass; @@debug = 1
+ when FalseClass; @@debug = 0
+ when Fixnum
if bit > 0
@@debug = 1
else
@@debug = 0
end
- when String:
+ when String;
if bit.downcase == 'off'
@@debug = 0
else