summaryrefslogtreecommitdiff
path: root/seivot
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-07-18 21:04:52 +0100
committerLars Wirzenius <liw@liw.fi>2011-07-18 21:04:52 +0100
commitc18199bf960e79962678660ec097630bf15dc6fb (patch)
tree3380c44a213cb65bbdae9263d5722f7b020932a2 /seivot
parent9133fe5b4150f2abc48f53e734a99bc865e7f183 (diff)
downloadseivot-c18199bf960e79962678660ec097630bf15dc6fb.tar.gz
Fix regexp to also match current logfile output.
Diffstat (limited to 'seivot')
-rwxr-xr-xseivot2
1 files changed, 1 insertions, 1 deletions
diff --git a/seivot b/seivot
index f9ca84a..fdaf48d 100755
--- a/seivot
+++ b/seivot
@@ -176,7 +176,7 @@ class Obnam(BackupProgram):
def extract_repository_io(self, measurement, logfile):
- pat = re.compile(r' VFS: __del__: baseurl=.* '
+ pat = re.compile(r' VFS:( __del__:)? baseurl=.* '
r'read=(?P<read>\d+) written=(?P<written>\d+)')
f = open(logfile)