diff --git a/gitfeed/gitfeed.py b/gitfeed/gitfeed.py index 7726d80..61ad942 100644 --- a/gitfeed/gitfeed.py +++ b/gitfeed/gitfeed.py @@ -17,7 +17,7 @@ def getArgs(argv=None): file_path = setConfigurationFiles() - conf = SafeConfigParser() + conf = configparser.SafeConfigParser() conf.read(file_path) user = conf.get('GitHub Newsfeed', 'user') @@ -41,7 +41,7 @@ def getArgs(argv=None): return parser.parse_args(argv) def setConfigurationFiles(): - conf = SafeConfigParser() + conf = configparser.SafeConfigParser() home = os.path.expanduser('~') folder_name = '.gitfeed' diff --git a/setup.py b/setup.py index 0e58a3b..adad812 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import gitfeed setup(name='GitFeed', - version='0.1.5', + version='0.1.6', 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.5.tar.gz', + download_url='https://github.com/Ritiek/GitFeed/archive/v0.1.6.tar.gz', classifiers=[], install_requires=[ 'requests >= 2.17.3',