Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a561c commit 9aa93b5Copy full SHA for 9aa93b5
lib/git/__init__.py
@@ -1,7 +1,7 @@
1
import os
2
import inspect
3
4
-__version__ = 'svn'
+__version__ = 'git'
5
6
from git.actor import Actor
7
from git.blob import Blob
setup.py
@@ -35,7 +35,7 @@ def _stamp_version(filename):
35
f = open(filename, 'r')
36
for line in f:
37
if '__version__ =' in line:
38
- line = line.replace("'svn'", "'%s'" % VERSION)
+ line = line.replace("'git'", "'%s'" % VERSION)
39
found = True
40
out.append(line)
41
f.close()
0 commit comments