summaryrefslogtreecommitdiffstats
path: root/pym/portage/getbinpkg.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 12:16:07 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-09-21 12:16:07 +0000
commitbda55a1f3cd10f5463228cb882c5b6b67d8937ae (patch)
tree2a31d93d9646048c51848e52969c9a7fee386da1 /pym/portage/getbinpkg.py
parentdbe76c6a138288980772d9b4a42280903df2daa9 (diff)
downloadportage-bda55a1f3cd10f5463228cb882c5b6b67d8937ae.tar.gz
portage-bda55a1f3cd10f5463228cb882c5b6b67d8937ae.tar.bz2
portage-bda55a1f3cd10f5463228cb882c5b6b67d8937ae.zip
Fix all remaining SyntaxErrors with Python 3.
svn path=/main/trunk/; revision=14315
Diffstat (limited to 'pym/portage/getbinpkg.py')
-rw-r--r--pym/portage/getbinpkg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/getbinpkg.py b/pym/portage/getbinpkg.py
index b5d24c857..2003fdbdc 100644
--- a/pym/portage/getbinpkg.py
+++ b/pym/portage/getbinpkg.py
@@ -177,7 +177,7 @@ def create_conn(baseurl,conn=None):
t.connect(username=username, password=password)
conn = paramiko.SFTPClient.from_transport(t)
else:
- raise NotImplementedError, _("%s is not a supported protocol.") % protocol
+ raise NotImplementedError(_("%s is not a supported protocol.") % protocol)
return (conn,protocol,address, http_params, http_headers)