mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 00:59:29 +00:00
Fix bug where wrong md5 was used
This commit is contained in:
parent
1720907d14
commit
7f8cb1e2e9
1 changed files with 3 additions and 2 deletions
|
|
@ -139,10 +139,11 @@ def main(dry):
|
|||
|
||||
|
||||
def tweet_skin(md5):
|
||||
print("Going to Tweet the skin with md5 hash %s" % md5)
|
||||
filenames = dict()
|
||||
for pair in get_lines("filenames.txt"):
|
||||
[md5, filename] = pair.strip().split(" ")
|
||||
filenames[md5] = filename
|
||||
[file_md5, filename] = pair.strip().split(" ")
|
||||
filenames[file_md5] = filename
|
||||
|
||||
skin_name = filenames[md5]
|
||||
assert skin_name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue