Revert "[copy][ninja] Move copy_sky_engine_sources.py to Python3"

This reverts commit 443e8d87dbdf6336cab7d9dcca6444a98950ab48.

Reason for revert: python 3 is not available on mac hosts

Original change's description:
> [copy][ninja] Move copy_sky_engine_sources.py to Python3
> 
> Python2 doesn't support nanosecond timestamps, but ninja does for
> checking dirtiness of builds. Because python2 is being used to copy the
> sources from the dart dir to the output dir in Fuchsia builds, doing a
> second build immediately after the first one results in the build still
> being dirty and the steps repeated.
> 
> In order to fix this, simply update this script to Python 3.x which
> handles nanoseconds in mtimes.
> 
> Bug: 36581
> Change-Id: I77cad2ec6b5b0f1d290bc1aeecf259462884338a

TBR=pylaligand@google.com,scottmg@google.com,kaushikiska@google.com

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: 36581
Change-Id: Ic06ea71c8e99d54f9b9f7b6e2586a93d47e215b4
diff --git a/runtime/sky_engine/copy_sky_engine_sources.py b/runtime/sky_engine/copy_sky_engine_sources.py
index e0baebf..d303477 100755
--- a/runtime/sky_engine/copy_sky_engine_sources.py
+++ b/runtime/sky_engine/copy_sky_engine_sources.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
 # Copyright 2018 The Fuchsia Authors. All rights reserved.
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.