Skip to content

Commit

Permalink
Merge "fix for exception while skipping system keyspace"
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 3f897be + 3b5263f commit 05afb1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile/tasks/backup_restore.py
Expand Up @@ -1041,6 +1041,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 05afb1c

Please sign in to comment.