spacing nitpick
[mirror/dsa-puppet.git] / modules / bacula / files / bacula-backup-dirs
index bff45a5..dd9e644 100644 (file)
@@ -1,13 +1,13 @@
-#! /usr/bin/python                                                                                                                           
+#! /usr/bin/python
 
 import re
 
-MI_RE = re.compile(r'(?P<mountid>\d+) (?P<parentid>\d+) (?P<majorminor>\d+:\d+) (?P<root>\S+) (?P<mountpoint>\S+) (?P<options>\S+) (?P<optional>(?:\S+\s)+ )?- (?P<fstype>\S+) (?P<mountsrc>\S+) (?P<superopts>\S+)')
+MI_RE = re.compile(r'(?P<mountid>\d+) (?P<parentid>\d+) (?P<majorminor>\d+:\d+) (?P<root>\S+) (?P<mountpoint>\S+) (?P<options>\S+) (?P<optional>(?:\S+\s)+)?- (?P<fstype>\S+) (?P<mountsrc>\S+) (?P<superopts>\S+)')
 
 for line in file("/proc/self/mountinfo"):
     mi = MI_RE.match(line)
     if mi is None:
-       # XXX: handle error?
+        # XXX: handle error?
         continue
     gd = mi.groupdict()
     # Skip bind mounts