add __all__ variable to many modules

This commit is contained in:
Christophe Benz 2010-04-16 18:02:03 +02:00
commit cebcead318
10 changed files with 38 additions and 2 deletions

View file

@ -25,6 +25,10 @@ import yaml
from .iconfig import IConfig, ConfigError
__all__ = ['YamlConfig']
class YamlConfig(IConfig):
def __init__(self, path):
self.path = path