From: Zac Medico Date: Sun, 18 Jun 2006 21:22:06 +0000 (-0000) Subject: Add missing sys import found by pyflakes. X-Git-Tag: v2.1.1~464 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=af394294653786f92095e98278f3244574d5ff62;p=portage.git Add missing sys import found by pyflakes. svn path=/main/trunk/; revision=3531 --- 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