X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=utils.py;h=b019d2ef8d58ac4898e39f067bc8ec0e9149ef6c;hb=6af978a6541011817562cd1eea68d2758111e4da;hp=4d6115b4d819fe173555744002afdde080e78286;hpb=bf489cbe9c0556d9db0a44eca755a152a9b7965e;p=dak.git diff --git a/utils.py b/utils.py index 4d6115b4..b019d2ef 100644 --- a/utils.py +++ b/utils.py @@ -1,6 +1,6 @@ # Utility functions # Copyright (C) 2000, 2001, 2002 James Troup -# $Id: utils.py,v 1.47 2002-06-08 00:18:02 troup Exp $ +# $Id: utils.py,v 1.48 2002-06-22 22:34:35 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 @@ -29,7 +29,7 @@ re_issource = re.compile (r"(.+)_(.+?)\.(orig\.tar\.gz|diff\.gz|tar\.gz|dsc)$"); re_single_line_field = re.compile(r"^(\S*)\s*:\s*(.*)"); re_multi_line_field = re.compile(r"^\s(.*)"); -re_taint_free = re.compile(r"^[-+\.\w]+$"); +re_taint_free = re.compile(r"^[-+~\.\w]+$"); re_parse_maintainer = re.compile(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>");