# File lib/rhc/helpers.rb, line 176
    def ssh_string(ssh_url)
      return nil if ssh_url.blank?
      uri = URI.parse(ssh_url)
      "#{uri.user}@#{uri.host}"
    rescue => e
      RHC::Helpers.debug_error(e)
      ssh_url
    end