qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

minikconf: accept alnum identifiers

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Marc-André Lureau and committed by
Paolo Bonzini
1b29af2f a284f798

+1 -1
+1 -1
scripts/minikconf.py
··· 645 645 self.cursor = self.src.find('\n', self.cursor) 646 646 self.val = self.src[start:self.cursor] 647 647 return TOK_SOURCE 648 - elif self.tok.isalpha(): 648 + elif self.tok.isalnum(): 649 649 # identifier 650 650 while self.src[self.cursor].isalnum() or self.src[self.cursor] == '_': 651 651 self.cursor += 1