comparison frontends/src/jp/cmd_profile.py @ 2164:63d191c05ecd

jp (blog): set default template and data mapping for the new template output
author Goffi <goffi@goffi.org>
date Tue, 21 Feb 2017 21:01:40 +0100
parents 1bb9bf1b4150
children 255830fdb80b
comparison
equal deleted inserted replaced
2163:75667727c500 2164:63d191c05ecd
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 19
20 """This module permits to manage profiles. It can list, create, delete 20 """This module permits to manage profiles. It can list, create, delete
21 and retrieve information about a profile.""" 21 and retrieve information about a profile."""
22 22
23 import logging as log 23 from sat.core.log import getLogger
24 log = getLogger(__name__)
24 from sat.core.i18n import _ 25 from sat.core.i18n import _
25 from sat_frontends.jp import base 26 from sat_frontends.jp import base
26 27
27 __commands__ = ["Profile"] 28 __commands__ = ["Profile"]
28 29