# HG changeset patch # User Matt Harbison # Date 1574368743 18000 # Node ID 882e633ac92cf73b2fcf9f6cf8d058d300d80908 # Parent 6c8ba31405d9bdbe2d7b7b93ce712c297616ad1a profiling: add a missing argument to the ProgrammingError constructor Differential Revision: https://phab.mercurial-scm.org/D7470 diff -r 6c8ba31405d9 -r 882e633ac92c mercurial/profiling.py --- a/mercurial/profiling.py Thu Nov 21 15:38:23 2019 -0500 +++ b/mercurial/profiling.py Thu Nov 21 15:39:03 2019 -0500 @@ -204,7 +204,7 @@ If the profiler was already started, this has no effect.""" if not self._entered: - raise error.ProgrammingError() + raise error.ProgrammingError(b'use a context manager to start') if self._started: return self._started = True