From ddc9e4e3cb82abf64af9e87b85a9cd572615d708 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 10 Nov 2013 23:55:44 +0100 Subject: [PATCH] Fix typo around cachePath Identation was wrong in if/else statement --- morss.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/morss.py b/morss.py index 431c10e..e14c91d 100644 --- a/morss.py +++ b/morss.py @@ -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)