chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06c94b3
)
checkupdates: be more verbose with tags
author
Daniel Martí
<mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:24:05 +0000
(16:24 -0700)
committer
Daniel Martí
<mvdan@mvdan.cc>
Mon, 24 Aug 2015 23:24:05 +0000
(16:24 -0700)
fdroidserver/checkupdates.py
patch
|
blob
|
history
diff --git
a/fdroidserver/checkupdates.py
b/fdroidserver/checkupdates.py
index 2a3c45f8cef028d458c59ca52400ad0c4e05d494..494a18342c1597659e078966388a902db4e13994 100644
(file)
--- a/
fdroidserver/checkupdates.py
+++ b/
fdroidserver/checkupdates.py
@@
-130,9
+130,11
@@
def check_tags(app, pattern):
hcode = "0"
tags = vcs.gettags()
+ logging.debug("All tags: " + ','.join(tags))
if pattern:
pat = re.compile(pattern)
tags = [tag for tag in tags if pat.match(tag)]
+ logging.debug("Matching tags: " + ','.join(tags))
if repotype in ('git',):
tags = vcs.latesttags(tags, 5)