From 233e3ffe0ef35dbabe49340ba567499690dcc166 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Fri, 30 May 2008 21:01:44 -0400 Subject: renamed git_python to git. Removed pop_key and replaced with dict.pop. Fixed up tests so they pass except for stderr test. Modified version information retrieval. --- lib/git/errors.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/git/errors.py (limited to 'lib/git/errors.py') diff --git a/lib/git/errors.py b/lib/git/errors.py new file mode 100644 index 00000000..f3fae26b --- /dev/null +++ b/lib/git/errors.py @@ -0,0 +1,8 @@ +class InvalidGitRepositoryError(Exception): + pass + +class NoSuchPathError(Exception): + pass + +class GitCommandError(Exception): + pass -- cgit v1.2.1