Fix create_hound_config for python3

pep8 did a business!

Change-Id: I1ffc99e30a0b5fc41c1f2485546b10553c525915
This commit is contained in:
Monty Taylor 2019-12-18 10:54:48 -05:00
parent 12bd0e0f35
commit ccb152d532
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,12 @@
import json
import os
# Python2 has unicode as a builtin
# Python3 does not
import sys
if sys.version_info[0] >= 3:
unicode = str
import jeepyb.utils as u