diff options
author | Tim Laszlo <tim.laszlo@gmail.com> | 2010-10-21 13:48:44 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2010-11-02 20:35:19 -0500 |
commit | 600cb7c95e62f523df492d086734fcf74bb1ca6b (patch) | |
tree | 0de2a7f2f109a7cc603855e17c0e3210ea175aa2 /src | |
parent | bccfe3f9f173f3fa5fb86914778e48d9923bc2ae (diff) | |
download | bcfg2-600cb7c95e62f523df492d086734fcf74bb1ca6b.tar.gz bcfg2-600cb7c95e62f523df492d086734fcf74bb1ca6b.tar.bz2 bcfg2-600cb7c95e62f523df492d086734fcf74bb1ca6b.zip |
Plugin.py: Reverted broken regex
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/Server/Plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py index 0458a4ce0..95569e3ac 100644 --- a/src/lib/Server/Plugin.py +++ b/src/lib/Server/Plugin.py @@ -33,8 +33,8 @@ info_regex = re.compile( \ 'encoding:(\s)*(?P<encoding>\w+)|' + 'group:(\s)*(?P<group>\S+)|' + 'important:(\s)*(?P<important>\S+)|' + - 'mtime:(\s)*(?P<mtime>\w+)$' + - '^owner:(\s)*(?P<owner>\S+)|' + + 'mtime:(\s)*(?P<mtime>\w+)|' + + 'owner:(\s)*(?P<owner>\S+)|' + 'paranoid:(\s)*(?P<paranoid>\S+)|' + 'perms:(\s)*(?P<perms>\w+)|') |