Skip to content
This repository was archived by the owner on May 9, 2020. It is now read-only.

Commit 76aeaa9

Browse files
committed
Replace direct usage of simplejson with the one from chef.utils
1 parent 476123e commit 76aeaa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chef/encrypted_data_bag_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from chef.exceptions import ChefUnsupportedEncryptionVersionError, ChefDecryptionError
22
from chef.aes import AES256Cipher
3+
from chef.utils import json
34

45
import os
56
import hmac
67
import base64
78
import chef
89
import hashlib
9-
import simplejson as json
1010

1111
class EncryptedDataBagItem(chef.DataBagItem):
1212
SUPPORTED_ENCRYPTION_VERSIONS = (1,2)

0 commit comments

Comments
 (0)