diff --git a/deb_autopkg/conf/__init__.py b/deb_autopkg/conf/__init__.py index 1155903..842bbf8 100644 --- a/deb_autopkg/conf/__init__.py +++ b/deb_autopkg/conf/__init__.py @@ -6,10 +6,10 @@ from .targetspec import TargetSpec from .poolspec import PoolSpec from .pkgspec import PkgSpec -from .config import Config +from .config import GlobalSpec """create new global config object and load config file""" def load(fn): - cf = Config() + cf = GlobalSpec() cf.load(fn) return cf diff --git a/deb_autopkg/conf/config.py b/deb_autopkg/conf/config.py index dda7b83..19d372f 100644 --- a/deb_autopkg/conf/config.py +++ b/deb_autopkg/conf/config.py @@ -14,7 +14,7 @@ from metux.util.specobject import SpecObject, SpecError """global configuration""" -class Config(SpecObject): +class GlobalSpec(SpecObject): """[private]""" def __init__(self):