diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-09-17 21:27:26 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2005-09-17 21:27:26 +0000 |
commit | a345931bccd2809aee35dcdaf6a3ef1d21db8c26 (patch) | |
tree | f2b8bbf7006f162f0fb19a4e3398b38dae9ea010 /lib/puppet.rb | |
parent | a8bdada4acadd2d5c0a08dd1c9d1a4fe5232e061 (diff) | |
download | puppet-a345931bccd2809aee35dcdaf6a3ef1d21db8c26.tar.gz puppet-a345931bccd2809aee35dcdaf6a3ef1d21db8c26.tar.xz puppet-a345931bccd2809aee35dcdaf6a3ef1d21db8c26.zip |
Successfully parsed my entire converted cfengine configuration; these are all fixes for bugs i found as a result. I have not tried to execute the configuration yet.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@687 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet.rb')
-rw-r--r-- | lib/puppet.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet.rb b/lib/puppet.rb index 8cd639eb3..9d2f6d4c7 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -30,7 +30,7 @@ module Puppet def to_s str = nil if defined? @file and defined? @line - str = "%s at file %s, line %s" % + str = "%s in file %s at line %s" % [@message, @file, @line] elsif defined? @line str = "%s at line %s" % |