From b3fe5beb2d4af31d1ebd7c99e6f16118428afb4c Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 27 Sep 2013 16:19:48 +0200 Subject: [PATCH] comment about cfgparse not being managed by the debian package --- manifold/util/options.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/manifold/util/options.py b/manifold/util/options.py index d6bd9589..8c177258 100644 --- a/manifold/util/options.py +++ b/manifold/util/options.py @@ -1,11 +1,17 @@ -import sys, optparse, cfgparse +import sys import os.path +import optparse +# xxx warning : this is not taken care of by the debian packaging +# cfgparse seems to be available by pip only (on debian, that is) +# there seems to be another package that might be used to do similar stuff +# python-configglue - Glues together optparse.OptionParser and ConfigParser.ConfigParser +# additionally argumentparser would probably be the way to go, notwithstanding +import cfgparse from manifold.util.singleton import Singleton # http://docs.python.org/dev/library/argparse.html#upgrading-optparse-code - class Options(object): __metaclass__ = Singleton -- 2.43.0