Encode string representation of Environment object for seamless printing

This commit is contained in:
Ilya Vassilevsky 2014-07-08 18:58:58 +04:00
parent bfe50e298e
commit 764be49b55
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ module Vagrant
#
# @return [String]
def inspect
"#<#{self.class}: #{@cwd}>"
"#<#{self.class}: #{@cwd}>".encode('external')
end
# Action runner for executing actions in the context of this environment.