Skip to content

Commit aac7aaa

Browse files
committed
removing spotify shell support for Python 2
1 parent 6d6c819 commit aac7aaa

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

spotifycli/spotifycli.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ def main():
5858
def start_shell():
5959
while(True):
6060
try:
61-
if sys.version_info[0] >= 3:
62-
command = input('spotify > ')
63-
else:
64-
command = raw_input('spotify > ')
61+
command = input('spotify > ')
6562
except EOFError:
6663
print("Have a nice day!")
6764
exit(0)

0 commit comments

Comments
 (0)