mirror of
https://github.com/cooperhammond/irs.git
synced 2025-03-24 16:35:06 +00:00
Fixed for windows
This commit is contained in:
parent
431ed17b83
commit
e00852bb54
|
@ -204,7 +204,10 @@ class DLog:
|
||||||
# ===========================================
|
# ===========================================
|
||||||
# (It's for the CLI)
|
# (It's for the CLI)
|
||||||
|
|
||||||
COLS = int(os.popen('tput cols').read().strip("\n"))
|
try:
|
||||||
|
COLS = int(os.popen('tput cols').read().strip("\n"))
|
||||||
|
except:
|
||||||
|
COLS = 80
|
||||||
|
|
||||||
if sys.version_info[0] == 2:
|
if sys.version_info[0] == 2:
|
||||||
def input(string):
|
def input(string):
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'irs',
|
name = 'irs',
|
||||||
version = '6.7.4',
|
version = '6.7.6',
|
||||||
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