From f756a4d83435aa342ef1da0d5548f1febcc9e267 Mon Sep 17 00:00:00 2001 From: pictuga Date: Sun, 3 Nov 2013 13:32:24 +0100 Subject: [PATCH] Use more obvious varname for cache path --- morss.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/morss.py b/morss.py index f76051a..833e261 100644 --- a/morss.py +++ b/morss.py @@ -534,9 +534,9 @@ if __name__ == '__main__': HOLD = False - cache = os.getcwd() + '/cache' + cachePath = os.getcwd() + '/cache' else: - cache = os.path.expanduser('~') + '/.cache/morss' + cachePath = os.path.expanduser('~') + '/.cache/morss' if url is None: print 'Please provide url.' @@ -547,7 +547,7 @@ if __name__ == '__main__': if options.cache: MAX_TIME = 0 - RSS = Gather(url, cache, options) + RSS = Gather(url, cachePath, options) if RSS is not False and not options.progress and not DEBUG: print RSS