make dusty regex nongreedy
This commit is contained in:
parent
794efb68b8
commit
7bc7ccc63a
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ from .utils import confirm
|
|||
log = logging.getLogger("nomen.settings")
|
||||
log.setLevel(logging.INFO)
|
||||
|
||||
DUSTY_DATA_LINE = re.compile(r"^`?(.+)`? – notified `?(\d+)`? times$")
|
||||
DUSTY_DATA_LINE = re.compile(r"^`?(.+?)`? – notified `?(\d+)`? times$")
|
||||
|
||||
|
||||
class InvalidImportFormat(Exception):
|
||||
|
|
Loading…
Reference in a new issue