diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-06-18 21:22:06 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-06-18 21:22:06 +0000 |
commit | af394294653786f92095e98278f3244574d5ff62 (patch) | |
tree | a3c88b026d711647e23e77c292bab10f92f2f306 | |
parent | 788e901d2eb28b3b770d4f2fd9afbf50f716a289 (diff) | |
download | portage-af394294653786f92095e98278f3244574d5ff62.tar.gz portage-af394294653786f92095e98278f3244574d5ff62.tar.bz2 portage-af394294653786f92095e98278f3244574d5ff62.zip |
Add missing sys import found by pyflakes.
svn path=/main/trunk/; revision=3531
-rw-r--r-- | pym/portage_mail.py | 2 |
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 |