summaryrefslogtreecommitdiffstats
path: root/pym/portage_mail.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-06-18 21:22:06 +0000
committerZac Medico <zmedico@gentoo.org>2006-06-18 21:22:06 +0000
commitaf394294653786f92095e98278f3244574d5ff62 (patch)
treea3c88b026d711647e23e77c292bab10f92f2f306 /pym/portage_mail.py
parent788e901d2eb28b3b770d4f2fd9afbf50f716a289 (diff)
downloadportage-af394294653786f92095e98278f3244574d5ff62.tar.gz
portage-af394294653786f92095e98278f3244574d5ff62.tar.bz2
portage-af394294653786f92095e98278f3244574d5ff62.zip
Add missing sys import found by pyflakes.
svn path=/main/trunk/; revision=3531
Diffstat (limited to 'pym/portage_mail.py')
-rw-r--r--pym/portage_mail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_mail.py b/pym/portage_mail.py
index b3b3dd86d..99ed77fda 100644
--- a/pym/portage_mail.py
+++ b/pym/portage_mail.py
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: portage.py 3483 2006-06-10 21:40:40Z genone $
-import portage_exception, socket, smtplib, os, time
+import portage_exception, socket, smtplib, os, sys, time
from email.MIMEText import MIMEText as TextMessage
from email.MIMEMultipart import MIMEMultipart as MultipartMessage
from email.MIMEBase import MIMEBase as BaseMessage