From 53deadead804cc81232b045bcb8d5f27402c43f6 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 16 Nov 2017 16:30:49 -0800 Subject: [PATCH] we missed this callsite in the toml migration changes Summary: This fixes up a minor but sadly fatal oversight from D6314115; a call to `get_repo_config` didn't get renamed to `find_config_for_alias` (Note: this ignores all push blocking failures!) Reviewed By: bolinfest Differential Revision: D6354474 fbshipit-source-id: 13c665882419feebf0b8c0596eb3e0220ee2cf13 --- eden/cli/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eden/cli/config.py b/eden/cli/config.py index f473331097..0030a2de9c 100644 --- a/eden/cli/config.py +++ b/eden/cli/config.py @@ -408,7 +408,7 @@ Do you want to run `eden mount %s` instead?''' % (path, path)) parser = configparser.ConfigParser() parser.read(edenrc) repo_name = parser.get('repository', 'name') - client_config = self.get_repo_config(repo_name) + client_config = self.find_config_for_alias(repo_name) config_path = os.path.join(clients_dir, entry, MOUNT_CONFIG) self._save_client_config(client_config, config_path) os.remove(edenrc)