1
0
mirror of https://github.com/gryf/uc1541.git synced 2026-02-25 11:45:47 +01:00

Fix for wrong regex in line matcher

This commit is contained in:
2023-11-20 18:48:47 +01:00
parent 6f359f7191
commit bda541dd92
2 changed files with 3 additions and 2 deletions

View File

@@ -87,6 +87,7 @@ script behaviour:
Changelog Changelog
========= =========
* **3.6** Fixed line matcher for directory entries.
* **3.5** Drop Python2 support. * **3.5** Drop Python2 support.
* **3.4** Code cleanup. Removed dummy logger class and sys.args based argument * **3.4** Code cleanup. Removed dummy logger class and sys.args based argument
parsing. parsing.

4
uc1541
View File

@@ -4,7 +4,7 @@ UC1541 Virtual filesystem
Author: Roman 'gryf' Dobosz <gryf73@gmail.com> Author: Roman 'gryf' Dobosz <gryf73@gmail.com>
Date: 2023-10-04 Date: 2023-10-04
Version: 3.5 Version: 3.6
Licence: BSD Licence: BSD
source: https://bitbucket.org/gryf/uc1541 source: https://bitbucket.org/gryf/uc1541
mirror: https://github.com/gryf/uc1541 mirror: https://github.com/gryf/uc1541
@@ -357,7 +357,7 @@ class Uc1541(object):
""" """
Class for interact with c1541 program and MC Class for interact with c1541 program and MC
""" """
PRG = re.compile(r'(\d+)\s+"([^"]*)".+?\s(del|prg|rel|seq|usr)([\s<])') PRG = re.compile(r'(\d+)\s+"([^"]*)".+?(del|prg|rel|seq|usr)([\s<])')
def __init__(self, archname): def __init__(self, archname):
self.arch = archname self.arch = archname