~ruther/qmk_firmware

3cb28bbe42a942275d3cbe530af6db4d72a37965 — skullydazed 6 years ago 74d7d23
Use the older `universal_newlines` name instead of `text` (#6506)

1 files changed, 1 insertions(+), 1 deletions(-)

M bin/qmk
M bin/qmk => bin/qmk +1 -1
@@ 38,7 38,7 @@ with open('requirements.txt', 'r') as fd:

# Figure out our version
command = ['git', 'describe', '--abbrev=6', '--dirty', '--always', '--tags']
result = subprocess.run(command, text=True, capture_output=True)
result = subprocess.run(command, universal_newlines=True, capture_output=True)

if result.returncode == 0:
    os.environ['QMK_VERSION'] = 'QMK ' + result.stdout.strip()