Skip to content

Commit 85adedd

Browse files
authored
use a keyword known by python 3.6's subprocess.check_output (#44)
1 parent 92e5962 commit 85adedd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def get_options(self):
4242
def run_pkg_config(option):
4343
output = subprocess.check_output(
4444
['pkg-config', option, 'poppler-qt5'],
45-
text=True)
45+
universal_newlines=True)
4646
return output.rstrip()
4747

4848
def apply_user_defaults(self, tool):

0 commit comments

Comments
 (0)