mercurial/repo.py
author Thomas Arendsen Hein <thomas@intevation.de>
Mon, 03 Apr 2006 21:01:33 +0200
changeset 2043 968f036f93a4
parent 1089 142b5d5ec9cc
child 2612 ffb895f16925
permissions -rw-r--r--
Minor fix for revert: No need to make a backup when forgetting added files. echo foo > foo && hg add foo && hg revert foo creates foo.orig, though foo is not changed or deleted.

# 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