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