Skip to content

Commit

Permalink
Merge "fix for exception while skipping system keyspace" into R3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Apr 11, 2016
2 parents 0f48284 + 5307f55 commit 5ba5fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile/tasks/backup_restore.py
Expand Up @@ -1042,6 +1042,6 @@ def ssh_key_gen():

def replace_key(text, skip_key):
for key in skip_key:
text = text.replace(key, "")
text=re.sub('\\b'+key+'\\b','',text)
return text
# end replace_kespace_for_custom_cassandra_snapshot

0 comments on commit 5ba5fc0

Please sign in to comment.