From 18bdd894c2026fcdc31ebd8b58fa9313ccdff476 Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Thu, 14 Feb 2002 00:54:42 +0000 Subject: corrected warnings reported by pychecker --- share/Config.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'share/Config.py') diff --git a/share/Config.py b/share/Config.py index ee2c10e..37a176f 100644 --- a/share/Config.py +++ b/share/Config.py @@ -8,8 +8,6 @@ # Purpose : configuration settings #--------------------------------------------------------------- -import sys - CONFIG='/etc/security/msec2.conf' _config={ 'root' : '', @@ -31,16 +29,16 @@ def get_config(name, default=None): def set_config(name, value): _config[name] = value -def converthexa(array): - result="" - for c in array: - o=ord(c) - d=o/16 - u=o-(d*16) - result=result + "%x%x" % (d, u) - return result - -def hashstring(str): - return converthexa(md5.new(str).digest()) +# def converthexa(array): +# result="" +# for c in array: +# o=ord(c) +# d=int(o/16) +# u=o-(d*16) +# result=result + "%x%x" % (d, u) +# return result +# +# def hashstring(str): +# return converthexa(md5.new(str).digest()) # Config.py ends here -- cgit v1.2.1