# HG changeset patch # User Brendan Cully # Date 1160696072 25200 # Node ID 1106e00e68475d9fc13bf89804aeb81535bbf5cb # Parent 9fe62e2db71d671a780120968257615f640a4b35 Add popen2 demandload to patch.py, required by diffstat diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -9,8 +9,8 @@ from demandload import demandload from i18n import gettext as _ from node import * demandload(globals(), "base85 cmdutil mdiff util") -demandload(globals(), "cStringIO email.Parser errno os re shutil sha sys") -demandload(globals(), "tempfile zlib") +demandload(globals(), "cStringIO email.Parser errno os popen2 re shutil sha") +demandload(globals(), "sys tempfile zlib") # helper functions