|
@@ -17,7 +17,7 @@ logger = logging.getLogger(config.APP_NAME)
|
17
|
17
|
|
18
|
18
|
VERS_MAJOR = 1
|
19
|
19
|
VERS_MINOR = 0
|
20
|
|
-VERS_PATCH = 0
|
|
20
|
+VERS_PATCH = 1
|
21
|
21
|
|
22
|
22
|
INFO_TOPIC = "__info__"
|
23
|
23
|
INFO_DATA = {
|
|
@@ -30,7 +30,7 @@ INFO_DATA = {
|
30
|
30
|
},
|
31
|
31
|
"git": {
|
32
|
32
|
"url": subprocess.check_output(["git", "config", "--get", "remote.origin.url"])[:-1].decode("utf-8"),
|
33
|
|
- "ref": subprocess.check_output(["git", "log", "-1", '--format="%H"'])[2:-2].decode("utf-8")
|
|
33
|
+ "ref": subprocess.check_output(["git", "log", "-1", '--format="%H"'])[1:-2].decode("utf-8")
|
34
|
34
|
}
|
35
|
35
|
}
|
36
|
36
|
|