Fix typo bug in key rename

This commit is contained in:
Joshua Boniface 2021-06-14 00:51:45 -04:00
parent a2205bec13
commit 49f4feb482
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ class ZKHandler(object):
transaction = self.zk_conn.transaction()
def rename_element(transaction, source_path, destnation_path):
def rename_element(transaction, source_path, destination_path):
data = self.zk_conn.get(source_path)[0]
transaction.create(destination_path, data)