repo.or.cz
/
xbmc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[FileItem] Fix mimetype content lookup
[xbmc.git]
/
addons
/
metadata.generic.albums
/
lib
/
nfo.py
blob
ef996ce52b7452195c7074eef43cc2fca96d2d86
1
# -*- coding: utf-8 -*-
2
3
import
re
4
5
def
nfo_geturl
(
data
):
6
result
=
re
.
search
(
'https://musicbrainz.org/(ws/2/)?release/([0-9a-z\-]*)'
,
data
)
7
if
result
:
8
return
result
.
group
(
2
)