summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/plugin/plugin_base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-10-11 12:30:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-10-11 12:32:45 -0400
commitb91e76a4f7b9827d0d15c3c562af77f900a92091 (patch)
tree6d131a78356d9466cb4381ade4cfe3857f18e0c9 /lib/sqlalchemy/testing/plugin/plugin_base.py
parentbee9b92ea094115269ba18e5b85b5cfe23b7f79d (diff)
downloadsqlalchemy-b91e76a4f7b9827d0d15c3c562af77f900a92091.tar.gz
rename elements to main
There are still some SQLite / MySQL specific occurrences of "master" but this is most of it. Change-Id: I0144c992e2f0207777e20e058b63a11c031986b9
Diffstat (limited to 'lib/sqlalchemy/testing/plugin/plugin_base.py')
-rw-r--r--lib/sqlalchemy/testing/plugin/plugin_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py
index 8f486dc8d..d2e4a0f69 100644
--- a/lib/sqlalchemy/testing/plugin/plugin_base.py
+++ b/lib/sqlalchemy/testing/plugin/plugin_base.py
@@ -434,7 +434,7 @@ def _engine_uri(options, file_config):
for db_url in expanded_urls:
log.info("Adding database URL: %s", db_url)
- if options.write_idents and provision.FOLLOWER_IDENT: # != 'master':
+ if options.write_idents and provision.FOLLOWER_IDENT:
with open(options.write_idents, "a") as file_:
file_.write(provision.FOLLOWER_IDENT + " " + db_url + "\n")