From d0e1beded32155fcdcc2ba58dd3a468abdd76aa5 Mon Sep 17 00:00:00 2001 From: "mit@google.com" Date: Wed, 27 Jan 2016 18:42:51 +0000 Subject: [PATCH] Rename Fletch to Dartino BUG= Review URL: https://codereview.chromium.org/1642493003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@298413 0039d316-1c4b-4281-b951-d872f2087c98 --- fetch_configs/{fletch.py => dartino.py} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename fetch_configs/{fletch.py => dartino.py} (80%) diff --git a/fetch_configs/fletch.py b/fetch_configs/dartino.py similarity index 80% rename from fetch_configs/fletch.py rename to fetch_configs/dartino.py index 071d59231..cd74804ae 100644 --- a/fetch_configs/fletch.py +++ b/fetch_configs/dartino.py @@ -8,14 +8,14 @@ import config_util # pylint: disable=F0401 # This class doesn't need an __init__ method, so we disable the warning # pylint: disable=W0232 -class Fletch(config_util.Config): - """Basic Config class for Fletch.""" +class Dartino(config_util.Config): + """Basic Config class for Dartino.""" @staticmethod def fetch_spec(props): - url = 'https://github.com/dart-lang/fletch.git' + url = 'https://github.com/dartino/sdk.git' solution = { - 'name' :'fletch', + 'name' :'sdk', 'url' : url, 'deps_file': 'DEPS', 'managed' : False, @@ -34,11 +34,11 @@ class Fletch(config_util.Config): @staticmethod def expected_root(_props): - return 'fletch' + return 'sdk' def main(argv=None): - return Fletch().handle_args(argv) + return Dartino().handle_args(argv) if __name__ == '__main__':