patch: move mercurial-specific imports after stdlib imports

This commit is contained in:
Augie Fackler 2010-04-17 13:13:57 -05:00
parent d92b325779
commit 4da02e74e7

View File

@ -6,11 +6,12 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
import cStringIO, email.Parser, os, re
import tempfile, zlib
from i18n import _
from node import hex, nullid, short
import base85, cmdutil, mdiff, util, diffhelpers, copies
import cStringIO, email.Parser, os, re
import tempfile, zlib
gitre = re.compile('diff --git a/(.*) b/(.*)')