02039d0
diff -up ./node_build/dependencies/libuv/gyp_uv.py.python3 ./node_build/dependencies/libuv/gyp_uv.py
915cb90
--- ./node_build/dependencies/libuv/gyp_uv.py.python3	2019-08-06 18:58:48.000000000 -0400
915cb90
+++ ./node_build/dependencies/libuv/gyp_uv.py	2019-09-19 13:11:51.125240959 -0400
02039d0
@@ -1,4 +1,4 @@
02039d0
-#!/usr/bin/env python
915cb90
+#!/usr/bin/python3
02039d0
 
5c914f7
 import os
02039d0
 import platform
915cb90
@@ -29,7 +29,7 @@ def host_arch():
915cb90
 def run_gyp(args):
915cb90
   rc = gyp.main(args)
915cb90
   if rc != 0:
915cb90
-    print 'Error running GYP'
915cb90
+    print('Error running GYP')
915cb90
     sys.exit(rc)
915cb90
 
915cb90
 
915cb90
@@ -80,5 +80,5 @@ if __name__ == '__main__':
915cb90
     args.append('-Dcomponent=static_library')
915cb90
 
915cb90
   gyp_args = list(args)
915cb90
-  print gyp_args
915cb90
+  print(gyp_args)
915cb90
   run_gyp(gyp_args)