summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim Laszlo <tim.laszlo@gmail.com>2010-10-21 13:48:44 -0500
committerSol Jerome <sol.jerome@gmail.com>2010-11-02 20:35:19 -0500
commit600cb7c95e62f523df492d086734fcf74bb1ca6b (patch)
tree0de2a7f2f109a7cc603855e17c0e3210ea175aa2 /src
parentbccfe3f9f173f3fa5fb86914778e48d9923bc2ae (diff)
downloadbcfg2-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.py4
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+)|')