diff options
author | Joshua Harlow <harlowja@gmail.com> | 2013-07-20 06:26:30 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@gmail.com> | 2013-07-20 06:26:30 -0700 |
commit | 03d93b4fe94d0cd4de8fb661748207ea251fbb2a (patch) | |
tree | bb0a356e9a67922692984a786e2d36eb5d9d6bdb | |
parent | 36bbd898e9b8bef508b5d185dc1e52af0f13cfd0 (diff) | |
download | vyos-cloud-init-03d93b4fe94d0cd4de8fb661748207ea251fbb2a.tar.gz vyos-cloud-init-03d93b4fe94d0cd4de8fb661748207ea251fbb2a.zip |
Fix content-type constant.
-rw-r--r-- | cloudinit/handlers/cloud_config.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cloudinit/handlers/cloud_config.py b/cloudinit/handlers/cloud_config.py index 84653375..3a4f2150 100644 --- a/cloudinit/handlers/cloud_config.py +++ b/cloudinit/handlers/cloud_config.py @@ -52,9 +52,6 @@ MERGE_HEADER = 'Merge-Type' # This gets loaded into yaml with final result {'a': 22} DEF_MERGERS = mergers.string_extract_mergers('dict(replace)+list()+str()') -# See: https://tools.ietf.org/html/rfc6902 -JSON_PATCH_CTYPE = 'application/json-patch+json' - class CloudConfigPartHandler(handlers.Handler): def __init__(self, paths, **_kwargs): |