blob: db5a00dc3520d9ee3b9687e51513c8a0538112a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright (C) 2016 Canonical Ltd.
# Copyright (C) 2016 VMware Inc.
#
# Author: Sankar Tanguturi <stanguturi@vmware.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
class GuestCustErrorEnum(object):
"""Specifies different errors of Guest Customization engine"""
GUESTCUST_ERROR_SUCCESS = 0
# vi: ts=4 expandtab
|