Mercurial > public > mercurial-scm > hg
comparison hgext/patchbomb.py @ 19791:f4b72cad29f8
patchbomb: correct import of email module
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 20 Sep 2013 10:16:35 -0400 |
parents | c58b6ab4c26f |
children | c80feeb715d1 |
comparison
equal
deleted
inserted
replaced
19790:53f16f4aff33 | 19791:f4b72cad29f8 |
---|---|
44 directly from the commandline. See the [email] and [smtp] sections in | 44 directly from the commandline. See the [email] and [smtp] sections in |
45 hgrc(5) for details. | 45 hgrc(5) for details. |
46 ''' | 46 ''' |
47 | 47 |
48 import os, errno, socket, tempfile, cStringIO | 48 import os, errno, socket, tempfile, cStringIO |
49 import email.MIMEMultipart, email.MIMEBase | 49 import email |
50 import email.Utils, email.Encoders, email.Generator | |
51 from mercurial import cmdutil, commands, hg, mail, patch, util | 50 from mercurial import cmdutil, commands, hg, mail, patch, util |
52 from mercurial import scmutil | 51 from mercurial import scmutil |
53 from mercurial.i18n import _ | 52 from mercurial.i18n import _ |
54 from mercurial.node import bin | 53 from mercurial.node import bin |
55 | 54 |