summaryrefslogtreecommitdiffstats
path: root/formats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-02-09 21:46:02 +0100
committerJan Pokorný <jpokorny@redhat.com>2014-02-09 21:56:18 +0100
commite4ca64a26cefadb0e159463aac55d3d4410c84c5 (patch)
tree9733f16be57e3b91466bd73b6dbdedae953f8c4b /formats
parent68ddfa35b8cbd5a47efcfbf4870bdc7391bd093e (diff)
downloadclufter-e4ca64a26cefadb0e159463aac55d3d4410c84c5.tar.gz
clufter-e4ca64a26cefadb0e159463aac55d3d4410c84c5.tar.xz
clufter-e4ca64a26cefadb0e159463aac55d3d4410c84c5.zip
plugin_registry/format/filter: new way of "private plugin" marking
using MetaPlugin class in the inheritance hierarchy to mark this fact. Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to 'formats')
-rw-r--r--formats/simpleconfig.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/formats/simpleconfig.py b/formats/simpleconfig.py
index 436c8fa..72acd3f 100644
--- a/formats/simpleconfig.py
+++ b/formats/simpleconfig.py
@@ -1,14 +1,14 @@
# -*- coding: UTF-8 -*-
-# Copyright 2013 Red Hat, Inc.
+# Copyright 2014 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2 (a copy included | http://gnu.org/licenses/gpl-2.0.txt)
"""Structured configuration formats such as corosync.conf"""
__author__ = "Jan Pokorný <jpokorny @at@ Red Hat .dot. com>"
-from ..format import Format, producing
+from ..format import SimpleFormat
-class simpleconfig(Format):
+class simpleconfig(SimpleFormat):
""""Structured configuration formats such as corosync.conf"""
# yacc-based parser in fence-virt
native_protocol = 'struct'