@@ -51,7 +51,7 @@ def get_rules(self):
51
51
return rawrules .encode ('ascii' , 'ignore' )
52
52
except NameError :
53
53
pass # py3
54
-
54
+
55
55
return rawrules
56
56
57
57
@@ -85,7 +85,7 @@ def _get_cache_timestamp_content(self, cachefile):
85
85
mtime = time .gmtime (mtime )
86
86
mtime = time .strftime ('%a, %d %b %Y %H:%M:%S GMT' , mtime )
87
87
88
- with open (cachefile ) as fh :
88
+ with open (cachefile , 'rb' ) as fh :
89
89
cachedcontent = fh .read ()
90
90
91
91
return mtime , cachedcontent
@@ -114,21 +114,23 @@ def _httpget(self, url):
114
114
115
115
if resp .status_code == 200 :
116
116
with open (cachefile , 'wb' ) as fh :
117
- fh .write (resp .content )
117
+ # py3 vs py2
118
+ if type (resp .content ) is bytes :
119
+ ruleset = resp .content .decode ('utf-8' , 'ignore' )
120
+ else :
121
+ ruleset = resp .content
118
122
119
- # py3 vs py2
120
- if type (resp .content ) is bytes :
121
- return resp .content .decode ('utf-8' , errors = 'ignore' )
122
- else :
123
- return resp .content
123
+ fh .write (ruleset .encode ('utf-8' , 'ignore' ))
124
+
125
+ return ruleset
124
126
125
127
if resp .status_code == 304 :
126
128
logging .debug (
127
129
'Upstream {0} is the same as our cache (HTTP 304)' .format (url ))
128
130
129
131
# Upstream hasn't changed (304) or has err'd
130
132
if cachedcontent is not None :
131
- return cachedcontent
133
+ return cachedcontent . decode ( 'utf-8' , 'ignore' )
132
134
133
135
raise RuntimeError ("No cache @ {0} and invalid response for {1}: {2}" .format (
134
136
cachefile , url , resp .status_code ))
@@ -170,8 +172,8 @@ class Files(RulesProvider):
170
172
def get_rules (self ):
171
173
path = self ._args .rules
172
174
logging .info ("Loading {0}" .format (self ._args .rules ))
173
- with open (path ) as fh :
174
- return fh .read ()
175
+ with open (path , 'rb' ) as fh :
176
+ return fh .read (). decode ( 'utf-8' , 'ignore' )
175
177
176
178
177
179
class NBS (RulesProvider ):
0 commit comments