mirror of
https://github.com/cooperhammond/irs.git
synced 2025-09-05 02:21:06 +00:00
EOFError catching
This commit is contained in:
parent
54e23c4f35
commit
7cf80b548f
|
@ -272,11 +272,11 @@ def console(ripper):
|
||||||
|
|
||||||
elif choice in ("help", "h", "?"):
|
elif choice in ("help", "h", "?"):
|
||||||
menu(unicode, 0)
|
menu(unicode, 0)
|
||||||
except KeyboardInterrupt:
|
except (KeyboardInterrupt, EOFError):
|
||||||
print ("")
|
print ("")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except (KeyboardInterrupt, EOFError):
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
#======================
|
#======================
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='irs',
|
name='irs',
|
||||||
version='6.2.2',
|
version='6.3.1',
|
||||||
description='A music downloader that just gets metadata.',
|
description='A music downloader that just gets metadata.',
|
||||||
url='https://github.com/kepoorhampond/irs',
|
url='https://github.com/kepoorhampond/irs',
|
||||||
author='Kepoor Hampond',
|
author='Kepoor Hampond',
|
||||||
|
|
Loading…
Reference in a new issue