mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 00:34:42 +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)
|
||||
print("Found %s" % skin_name)
|
||||
os.system("open \"%s\"" % screenshot_path)
|
||||
res = raw_input("Approve? (y/n/q)")
|
||||
res = input("Approve? (y/n/q)")
|
||||
if(res is "q"):
|
||||
return
|
||||
elif(res is "y"):
|
||||
|
Loading…
Reference in New Issue
Block a user