diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-08-26 11:57:20 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-08-26 11:57:20 +0200 |
commit | 1119b629ca26edfbac1bbb519136e3e664cad4fc (patch) | |
tree | 98ab61b384830bc10d313b04a79675c75c25f902 /pykolab/cli/__init__.py | |
parent | b2939c5516e3f8d3dc77ccbc5ddbfc46938c2423 (diff) | |
download | pykolab-1119b629ca26edfbac1bbb519136e3e664cad4fc.tar.gz |
Make the compile/build time variables appear in constants, and then re-use constants
Diffstat (limited to 'pykolab/cli/__init__.py')
-rw-r--r-- | pykolab/cli/__init__.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pykolab/cli/__init__.py b/pykolab/cli/__init__.py new file mode 100644 index 0000000..1b960b2 --- /dev/null +++ b/pykolab/cli/__init__.py @@ -0,0 +1,37 @@ +# Copyright 2010 Kolab Systems AG (http://www.kolabsys.com) +# +# Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen a kolabsys.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 only +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# + +import traceback +import shutil +import sys + +import pykolab +import pykolab.plugins + +from pykolab.translate import _ + +from pykolab.conf import Conf +from pykolab.constants import * + +class Cli(object): + def __init__(self): + self.conf = Conf() + print "%r" %(self.conf.args) + + def run(self): + print >> sys.stderr, _("Running") |