improve the dummy script

This commit is contained in:
Romain Bignon 2010-04-01 20:25:32 +02:00
commit 3d0c80c323
5 changed files with 24 additions and 11 deletions

View file

@ -1,6 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai
"""
Copyright(C) 2010 Romain Bignon
@ -26,8 +24,11 @@ import re
from weboob import Weboob
class BaseApplication(object):
# Application name
APPNAME = ''
# Default configuration
CONFIG = {}
# Configuration directory
CONFDIR = os.path.join(os.path.expanduser('~'), '.weboob')
def __init__(self):