summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Gartrell <jgartrel@stevenbeulow2.servepath.com>2009-03-04 14:10:34 -0800
committerJames Gartrell <jgartrel@stevenbeulow2.servepath.com>2009-03-04 14:10:34 -0800
commita4d5a597005cce687a40022f5eca27fa4516ea65 (patch)
tree1964ee8315c471794863333ff7f6ce92b2384a2b
parent739366cb334a8a56dd37c9029f0c860cc1d085b3 (diff)
downloadohai-a4d5a597005cce687a40022f5eca27fa4516ea65.tar.gz
Fixed typo in python.rb
-rw-r--r--lib/ohai/plugins/python.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ohai/plugins/python.rb b/lib/ohai/plugins/python.rb
index 985e32de..fbc4fc75 100644
--- a/lib/ohai/plugins/python.rb
+++ b/lib/ohai/plugins/python.rb
@@ -20,7 +20,7 @@ require_plugin "languages"
output = nil
python = Mash.new
-status, stdout, error = run_command(:no_status_check => true, :command => "python -c \"import sys; print sys.version\"")
+status, stdout, stderr = run_command(:no_status_check => true, :command => "python -c \"import sys; print sys.version\"")
if status == 0
output = stdout.split