mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
Fix skin approval in python 3
This commit is contained in:
parent
e0038b4079
commit
cf83e48fdc
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue