diff options
author | Michael Trier <mtrier@gmail.com> | 2008-06-02 09:46:48 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-06-02 09:46:48 -0400 |
commit | 9aa93b5890acb152c5824a8f75c221cf1addfd1b (patch) | |
tree | 5987d8e483944e30822ce0b67feee4343998a902 | |
parent | 57a561cda141a0fed3129f4f3488e3b91805e638 (diff) | |
download | gitpython-9aa93b5890acb152c5824a8f75c221cf1addfd1b.tar.gz |
changed svn to git. This makes more sense. I tried trunk, master, edge.
-rw-r--r-- | lib/git/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/__init__.py b/lib/git/__init__.py index f38dd220..7de5088a 100644 --- a/lib/git/__init__.py +++ b/lib/git/__init__.py @@ -1,7 +1,7 @@ import os import inspect -__version__ = 'svn' +__version__ = 'git' from git.actor import Actor from git.blob import Blob @@ -35,7 +35,7 @@ def _stamp_version(filename): f = open(filename, 'r') for line in f: if '__version__ =' in line: - line = line.replace("'svn'", "'%s'" % VERSION) + line = line.replace("'git'", "'%s'" % VERSION) found = True out.append(line) f.close() |