diff options
author | Michael Trier <mtrier@gmail.com> | 2009-01-24 15:40:27 -0500 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2009-01-24 15:40:27 -0500 |
commit | c76852d0bff115720af3f27acdb084c59361e5f6 (patch) | |
tree | 1a32625f14b304132196b359fcc918282bc7b3d7 /lib | |
parent | bcd57e349c08bd7f076f8d6d2f39b702015358c1 (diff) | |
download | gitpython-c76852d0bff115720af3f27acdb084c59361e5f6.tar.gz |
Lots of spring cleaning and added in Sphinx documentation.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/git/__init__.py | 2 | ||||
-rw-r--r-- | lib/git/actor.py | 2 | ||||
-rw-r--r-- | lib/git/blob.py | 2 | ||||
-rw-r--r-- | lib/git/cmd.py | 2 | ||||
-rw-r--r-- | lib/git/commit.py | 2 | ||||
-rw-r--r-- | lib/git/diff.py | 2 | ||||
-rw-r--r-- | lib/git/errors.py | 2 | ||||
-rw-r--r-- | lib/git/head.py | 2 | ||||
-rw-r--r-- | lib/git/lazy.py | 2 | ||||
-rw-r--r-- | lib/git/repo.py | 2 | ||||
-rw-r--r-- | lib/git/stats.py | 2 | ||||
-rw-r--r-- | lib/git/tag.py | 2 | ||||
-rw-r--r-- | lib/git/tree.py | 2 | ||||
-rw-r--r-- | lib/git/utils.py | 2 |
14 files changed, 14 insertions, 14 deletions
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 |