code clean/enhance

This commit is contained in:
Christophe Benz 2010-04-20 18:59:27 +02:00
commit 183f16eeed
2 changed files with 5 additions and 1 deletions

View file

@ -20,6 +20,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import re
__all__ = ['BackendStorage', 'BaseBackend']
class BackendStorage(object):
def __init__(self, name, storage):
self.name = name

View file

@ -24,7 +24,7 @@ from ConfigParser import SafeConfigParser
import logging
import os
from .iconfig import IConfig, ConfigError
from .iconfig import IConfig
__all__ = ['INIConfig']