~ubuntu-branches/ubuntu/natty/software-properties/natty

« back to all changes in this revision

Viewing changes to softwareproperties/ppa.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-12-13 09:37:56 UTC
  • Revision ID: james.westby@ubuntu.com-20101213093756-i1vceat77vib5l1d
Tags: 0.78.1
use port 80 by default when getting gpg keys for PPAs
(LP: #615788)

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
            # FIXME: this needs to go - elmo says the keyserver will not handle
86
86
            #        the load
87
87
            res = subprocess.call(
88
 
                ["apt-key", "adv", "--keyserver", "keyserver.ubuntu.com",
 
88
                ["apt-key", "adv", 
 
89
                 "--keyserver", "hkp://keyserver.ubuntu.com:80/",
89
90
                 "--recv", signing_key_fingerprint[0]])
90
91
            return (res == 0)
91
92
        except URLError, e: