# HG changeset patch # User Bryan O'Sullivan # Date 2013-04-13 01:48:02 # Node ID deffb5e990dbdff3a8a8943c93aa6d8fd1b49ea1 # Parent 8deaa703a6222dbafcf5457f237b14da4e3287ad synthrepo: add missing import of sys Found using Cython. diff --git a/contrib/synthrepo.py b/contrib/synthrepo.py --- a/contrib/synthrepo.py +++ b/contrib/synthrepo.py @@ -35,7 +35,7 @@ A few obvious properties that are not cu - Symlinks and binary files are ignored ''' -import bisect, collections, json, os, random, time +import bisect, collections, json, os, random, time, sys from mercurial import cmdutil, context, patch, scmutil, url, util, hg from mercurial.i18n import _ from mercurial.node import nullrev, nullid