# File lib/mario/hats/windows.rb, line 7
      def shell_escape_path(str)
        #Wrap windows paths with white space in quotes
        str =~ /\s/ ? "\"#{str}\"" : str
      end