mirror of https://github.com/cheat/cheat.git
Merge pull request #415 from chrisallenlane/issue-372
Addressing issue #372
This commit is contained in:
commit
ad25e16dc6
|
@ -1,3 +1,4 @@
|
|||
import io
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
@ -74,5 +75,5 @@ class Sheet:
|
|||
if not self.exists(sheet):
|
||||
Utils.die('No cheatsheet found for ' + sheet)
|
||||
|
||||
with open(self.path(sheet)) as cheatfile:
|
||||
with io.open(self.path(sheet), encoding='utf-8') as cheatfile:
|
||||
return cheatfile.read()
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import io
|
||||
import os
|
||||
|
||||
from cheat.utils import Utils
|
||||
|
@ -92,7 +93,7 @@ class Sheets:
|
|||
|
||||
for cheatsheet in sorted(self.get().items()):
|
||||
match = ''
|
||||
for line in open(cheatsheet[1]):
|
||||
for line in io.open(cheatsheet[1], encoding='utf-8'):
|
||||
if term in line:
|
||||
match += ' ' + self._utils.highlight(term, line)
|
||||
|
||||
|
|
Loading…
Reference in New Issue