Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
athre0z committed Jun 27, 2018
2 parents a25f9ed + f0349a3 commit 9f4dbf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/idaskins/idafontconfig.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import absolute_import, division, print_function

import os
import os, sys

import idaapi
from PyQt5.QtGui import QFontDatabase
Expand All @@ -25,8 +25,8 @@ def family(self):
'Name',
self._key,
'Consolas'
if os.name == 'nt' else
QFontDatabase.systemFont(QFontDatabase.FixedFont).family()
if os.name == 'nt' else
QFontDatabase.systemFont(QFontDatabase.FixedFont).family().encode()
)

@property
Expand Down

0 comments on commit 9f4dbf6

Please sign in to comment.