# # # patch "fdo/sharedmimeinfo.py" # from [d55219697c05e208ba20248969b5239be6b16479] # to [dd993b9e526568246adc535ce4d47d360dd4eb3b] # ============================================================ --- fdo/sharedmimeinfo.py d55219697c05e208ba20248969b5239be6b16479 +++ fdo/sharedmimeinfo.py dd993b9e526568246adc535ce4d47d360dd4eb3b @@ -285,7 +285,7 @@ class LookupHelper: return rv # okay; fall-back behaviour is to return text/plain iff ! is_binary, # otherwise application/octet-stream - if is_binary(data): + if self.is_binary(data): return 'application/octet-stream' else: return 'text/plain'