EOFError catching

This commit is contained in:
Kepoor Hampond 2017-03-25 19:52:46 -07:00
parent 54e23c4f35
commit 7cf80b548f
2 changed files with 3 additions and 3 deletions

View file

@ -272,11 +272,11 @@ def console(ripper):
elif choice in ("help", "h", "?"):
menu(unicode, 0)
except KeyboardInterrupt:
except (KeyboardInterrupt, EOFError):
print ("")
pass
except KeyboardInterrupt:
except (KeyboardInterrupt, EOFError):
sys.exit(0)
#======================

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='irs',
version='6.2.2',
version='6.3.1',
description='A music downloader that just gets metadata.',
url='https://github.com/kepoorhampond/irs',
author='Kepoor Hampond',