Fix bad ref to delete in wheel key api

This commit is contained in:
Thomas S Hatch 2013-02-11 15:42:03 -07:00
parent aa3ea5989e
commit 2fdbd9b877

View File

@ -25,7 +25,7 @@ def delete(match):
Delete keys based on a glob match
'''
skey = salt.key.Key(__opts__)
return skey.delete(match)
return skey.delete_key(match)
def reject(match):
'''