diff --git a/gitfeed/gitfeed.py b/gitfeed/gitfeed.py index 355a33f..92fe2f2 100644 --- a/gitfeed/gitfeed.py +++ b/gitfeed/gitfeed.py @@ -50,7 +50,7 @@ def setConfigurationFiles(): file_path = os.path.join(home, folder_name, file_name) if not os.path.isfile(file_path): - if sys_version > (3,0): + if version_info > (3,0): user = input("What's your GitHub username? ") else: user = raw_input("What's your GitHub username? ") diff --git a/setup.py b/setup.py index 429b533..90948cf 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import gitfeed setup(name='GitFeed', - version='0.1.2', + version='0.1.3', description='Check your GitHub Newsfeed via the command-line.', author='Ritiek Malhotra', author_email='ritiekmalhotra123@gmail.com', @@ -17,7 +17,7 @@ url='https://www.github.com/Ritiek/GitFeed', keywords=['GitHub', 'news', 'feed', 'command-line', 'python'], license='MIT', - download_url='https://github.com/Ritiek/GitFeed/archive/v0.1.2.tar.gz', + download_url='https://github.com/Ritiek/GitFeed/archive/v0.1.3.tar.gz', classifiers=[], install_requires=[ 'requests >= 2.17.3',