mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 08:39:15 +00:00
Fix skin approval in python 3
This commit is contained in:
parent
e0038b4079
commit
cf83e48fdc
@ -161,7 +161,7 @@ def review():
|
|||||||
skin_name = os.path.basename(skin_path)
|
skin_name = os.path.basename(skin_path)
|
||||||
print("Found %s" % skin_name)
|
print("Found %s" % skin_name)
|
||||||
os.system("open \"%s\"" % screenshot_path)
|
os.system("open \"%s\"" % screenshot_path)
|
||||||
res = raw_input("Approve? (y/n/q)")
|
res = input("Approve? (y/n/q)")
|
||||||
if(res is "q"):
|
if(res is "q"):
|
||||||
return
|
return
|
||||||
elif(res is "y"):
|
elif(res is "y"):
|
||||||
|
Loading…
Reference in New Issue
Block a user