From 22ca8535fc6525d7c890cd1ab2375682559a4c66 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 9 Jan 2011 08:04:39 -0500 Subject: [PATCH] Return `target` instead of `_url` in get_css.CSSReplacer.__call__(). --- posts/get_css/get_css.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/get_css/get_css.py b/posts/get_css/get_css.py index 1cda483..a25e3f2 100755 --- a/posts/get_css/get_css.py +++ b/posts/get_css/get_css.py @@ -183,7 +183,7 @@ class CSSReplacer (object): mkdir(self._data_dir) with open(os.path.join(self._data_dir, filename), 'wb') as f: f.write(data) - return _url + return target def _standardize_css(sheet, **kwargs): -- 2.26.2