diff options
author | Rasmus Steinke <rasi@xssn.at> | 2015-07-29 23:39:54 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2015-07-29 23:39:54 +0200 |
commit | 7c9cf9941c14f7c158adb68c9e099155afcd4520 (patch) | |
tree | d60e3199a235f5de71c83bdc8c4d0c3ece3aa036 /clerk_helper | |
parent | 2d3af663d681d057e5bd6aabd6afb37f0d737302 (diff) | |
download | perl-app-clerk-7c9cf9941c14f7c158adb68c9e099155afcd4520.tar.gz perl-app-clerk-7c9cf9941c14f7c158adb68c9e099155afcd4520.tar.xz |
align warnings
Diffstat (limited to 'clerk_helper')
-rwxr-xr-x | clerk_helper | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clerk_helper b/clerk_helper index 91b6042..d450fdc 100755 --- a/clerk_helper +++ b/clerk_helper @@ -76,7 +76,7 @@ def createCache(args): else: albumartist = i['albumartist'] else: - print("albumartist tag missing from "+i['file']) + print("WARNING: missing albumartist tag for file: "+i['file']) if 'date' in i: date=i['date'] @@ -85,7 +85,7 @@ def createCache(args): else: album = i['date'] else: - print("date tag missing from "+i['file']) + print("WARNING: missing date tag for file: "+i['file']) if 'title' in i: if isinstance(i['title'], list): @@ -93,7 +93,7 @@ def createCache(args): else: title=i['title'] else: - print("title tag missing from "+i['file']) + print("WARNING: missing title tag for file: "+i['file']) if 'track' in i: if isinstance(i['track'], list): @@ -101,7 +101,7 @@ def createCache(args): else: track = i['track'] else: - print("track tag missing from "+i['file']) + print("WARNING: missing track tag for file: "+i['file']) if 'album' in i: if isinstance(i['album'], list): @@ -109,7 +109,7 @@ def createCache(args): else: track = i['album'] else: - print("album tag missing from "+i['file']) + print("WARNING: missing album tag for file: "+i['file']) if 'artist' in i: if isinstance(i['artist'], list): @@ -117,7 +117,7 @@ def createCache(args): else: artist = i['artist'] else: - print("artist tag missing from "+i['file']) + print("WARNING: missing artist tag for file: "+i['file']) latest.append(mtime+" • "+albumartist+" • "+date+" • "+album) |