diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-07 16:23:42 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-07 16:23:42 +0200 |
commit | ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe (patch) | |
tree | 8cc2dd0502a838489925e68861f0542183c177c9 /setup.py | |
parent | 24effa4861d6d1e8cffe848ae63fa2ed40be03f6 (diff) | |
parent | 9aa93b5890acb152c5824a8f75c221cf1addfd1b (diff) | |
download | gitpython-ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe.tar.gz |
Merge branch 'master' of git://gitorious.org/git-python/mainline
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,14 +28,14 @@ class sdist(_sdist): if hasattr(os, 'link') and path.exists(dest): os.unlink(dest) self.copy_file(orig, dest) - # _stamp_version(dest) + _stamp_version(dest) def _stamp_version(filename): found, out = False, [] 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() |