Fix typo around cachePath

Identation was wrong in if/else statement
master
pictuga 2013-11-10 23:55:44 +01:00
parent ee24702360
commit ddc9e4e3cb
1 changed files with 2 additions and 3 deletions

View File

@ -548,9 +548,8 @@ if __name__ == '__main__':
sys.exit(0)
cachePath = os.getcwd() + '/cache'
else:
cachePath = os.path.expanduser('~') + '/.cache/morss'
else:
cachePath = os.path.expanduser('~') + '/.cache/morss'
if options.facebook:
facebook = Cache(cachePath, 'facebook', True)