Skip to content

Commit

Permalink
Fix importing configparser
Browse files Browse the repository at this point in the history
  • Loading branch information
ritiek committed Jun 3, 2017
1 parent b1afe91 commit 0f9b55b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gitfeed/gitfeed.py
Expand Up @@ -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')
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 0f9b55b

Please sign in to comment.