hgext/patchbomb.py
changeset 19791 f4b72cad29f8
parent 19226 c58b6ab4c26f
child 19810 c80feeb715d1
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