Added colon to error output

This commit is contained in:
Parker Moore 2013-01-05 23:49:00 -05:00
parent a5647e9a39
commit f3486d57b8
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ begin
puts "Happy blogging!"
rescue => e
puts "An error occurred #{e}."
puts "An error occurred: #{e}."
exit 1
end