Fixed for windows

This commit is contained in:
Kepoor Hampond 2017-11-05 23:09:56 -08:00
parent d751d80644
commit 4a40bb8dca
2 changed files with 5 additions and 2 deletions

View file

@ -204,7 +204,10 @@ class DLog:
# ===========================================
# (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:
def input(string):

View file

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