From c76852d0bff115720af3f27acdb084c59361e5f6 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Sat, 24 Jan 2009 15:40:27 -0500 Subject: Lots of spring cleaning and added in Sphinx documentation. --- lib/git/__init__.py | 2 +- lib/git/actor.py | 2 +- lib/git/blob.py | 2 +- lib/git/cmd.py | 2 +- lib/git/commit.py | 2 +- lib/git/diff.py | 2 +- lib/git/errors.py | 2 +- lib/git/head.py | 2 +- lib/git/lazy.py | 2 +- lib/git/repo.py | 2 +- lib/git/stats.py | 2 +- lib/git/tag.py | 2 +- lib/git/tree.py | 2 +- lib/git/utils.py | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) (limited to 'lib/git') diff --git a/lib/git/__init__.py b/lib/git/__init__.py index 3e2558c2..28d14d0c 100644 --- a/lib/git/__init__.py +++ b/lib/git/__init__.py @@ -1,5 +1,5 @@ # __init__.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/actor.py b/lib/git/actor.py index 901e52af..cdcc02f8 100644 --- a/lib/git/actor.py +++ b/lib/git/actor.py @@ -1,5 +1,5 @@ # actor.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/blob.py b/lib/git/blob.py index a79cd81c..82f92ce3 100644 --- a/lib/git/blob.py +++ b/lib/git/blob.py @@ -1,5 +1,5 @@ # blob.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/cmd.py b/lib/git/cmd.py index c7ec38f6..9cbad673 100644 --- a/lib/git/cmd.py +++ b/lib/git/cmd.py @@ -1,5 +1,5 @@ # cmd.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/commit.py b/lib/git/commit.py index f8c7e61f..2b19ea42 100644 --- a/lib/git/commit.py +++ b/lib/git/commit.py @@ -1,5 +1,5 @@ # commit.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/diff.py b/lib/git/diff.py index 7a6770c4..0216e061 100644 --- a/lib/git/diff.py +++ b/lib/git/diff.py @@ -1,5 +1,5 @@ # diff.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/errors.py b/lib/git/errors.py index 0cf29c79..bf882d33 100644 --- a/lib/git/errors.py +++ b/lib/git/errors.py @@ -1,5 +1,5 @@ # errors.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/head.py b/lib/git/head.py index c56bb1fa..86686f17 100644 --- a/lib/git/head.py +++ b/lib/git/head.py @@ -1,5 +1,5 @@ # head.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/lazy.py b/lib/git/lazy.py index 7f39c304..5e470181 100644 --- a/lib/git/lazy.py +++ b/lib/git/lazy.py @@ -1,5 +1,5 @@ # lazy.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/repo.py b/lib/git/repo.py index a714eea1..b7ffcb61 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -1,5 +1,5 @@ # repo.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/stats.py b/lib/git/stats.py index 7821518f..74a23126 100644 --- a/lib/git/stats.py +++ b/lib/git/stats.py @@ -1,5 +1,5 @@ # stats.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/tag.py b/lib/git/tag.py index e780d2ba..f7bc140e 100644 --- a/lib/git/tag.py +++ b/lib/git/tag.py @@ -1,5 +1,5 @@ # tag.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/tree.py b/lib/git/tree.py index ccada195..dea10908 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -1,5 +1,5 @@ # tree.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/lib/git/utils.py b/lib/git/utils.py index 7709b4eb..5d0ba8ca 100644 --- a/lib/git/utils.py +++ b/lib/git/utils.py @@ -1,5 +1,5 @@ # utils.py -# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors # # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -- cgit v1.2.1