mercurial/repo.py
author Bryan O'Sullivan <bos@serpentine.com>
Thu, 15 Sep 2005 00:04:29 -0700
changeset 1257 fe7fbfdb066d
parent 1089 142b5d5ec9cc
child 2612 ffb895f16925
permissions -rw-r--r--
Clamp negative rev numbers at zero. Prior to this change, trying to run "hg log -r -50:" in a repo with less than 50 changes caused an error. Now that we clamp at zero: no more error.

# repo.py - repository base classes for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

class RepoError(Exception): pass