Skip to content

Commit ce58e93

Browse files
committed
Change bitcoin-util-test.py to use Python3
1 parent 22d8700 commit ce58e93

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Makefile.test.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ bitcoin_test_clean : FORCE
147147

148148
check-local:
149149
@echo "Running test/util/bitcoin-util-test.py..."
150-
$(PYTHON) $(top_builddir)/test/util/bitcoin-util-test.py
150+
$(top_builddir)/test/util/bitcoin-util-test.py
151151
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
152152
if EMBEDDED_UNIVALUE
153153
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check

test/util/bitcoin-util-test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# Copyright 2014 BitPay Inc.
33
# Copyright 2016 The Bitcoin Core developers
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
6-
from __future__ import division,print_function,unicode_literals
76
import os
87
import sys
98
import argparse

0 commit comments

Comments
 (0)