aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-02-16 03:23:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2013-02-16 03:23:23 -0500
commit7e2bae18571ec5b6e7df9cade381da605ebbac55 (patch)
treec59e153638a37b4cda58deb5cae22674db96ba81
parent1e7b49282e6f36d5d624bdf50f1ea9a34f52cfee (diff)
downloadexternal_python_setuptools-7e2bae18571ec5b6e7df9cade381da605ebbac55.tar.gz
external_python_setuptools-7e2bae18571ec5b6e7df9cade381da605ebbac55.tar.bz2
external_python_setuptools-7e2bae18571ec5b6e7df9cade381da605ebbac55.zip
Update release script to use keyring more properly (rather than bundling an artifact of the backend I was using).
--HG-- branch : distribute extra : rebase_source : 188dcdb7f0873f1b382e8bde65377c5f43266f9f
-rw-r--r--release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.py b/release.py
index 46720a8e..199ad65a 100644
--- a/release.py
+++ b/release.py
@@ -50,7 +50,7 @@ def get_mercurial_creds(system='https://bitbucket.org', username=None):
# todo: consider getting this from .hgrc
username = username or getpass.getuser()
keyring_username = '@@'.join((username, system))
- system = '@'.join((keyring_username, 'Mercurial'))
+ system = 'Mercurial'
password = (
keyring.get_password(system, keyring_username)
if 'keyring' in globals()