We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633bccc commit bc4348cCopy full SHA for bc4348c
couchdb/tools/replicate.py
@@ -85,7 +85,7 @@ def main():
85
elif '*' in spath and tpath:
86
raise parser.error('target path must be empty with multiple sources')
87
88
- all = sorted(i for i in source)
+ all = sorted(i for i in source if i[0] != '_') # Skip reserved names.
89
if not spath:
90
raise parser.error('source database must be specified')
91
elif spath in all:
0 commit comments