1# This file is part of cloud-init. See LICENSE file for license information.
2
3try:
4    # For test cases, avoid the following UserWarning to stderr:
5    # You don't have the C version of NameMapper installed ...
6    from Cheetah import NameMapper as _nm
7    _nm.C_VERSION = True
8except ImportError:
9    pass
10
11# vi: ts=4 expandtab
12