# Utility functions
# Copyright (C) 2000 James Troup <james@nocrew.org>
-# $Id: utils.py,v 1.18 2001-03-21 01:02:04 troup Exp $
+# $Id: utils.py,v 1.19 2001-03-24 03:29:38 troup Exp $
# 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
def regex_safe (s):
s = string.replace(s, '+', '\\\\+');
+ s = string.replace(s, '.', '\\\\.');
return s
######################################################################################