mirror of
https://github.com/openXC7/prjxray.git
synced 2026-08-22 05:57:29 +02:00
Don't sort db files with fuzzer of origin information
Signed-off-by: Tomasz Michalak <[email protected]>
This commit is contained in:
@@ -339,6 +339,9 @@ def main(argv):
|
|||||||
for n in sorted(os.listdir()):
|
for n in sorted(os.listdir()):
|
||||||
if not os.path.isfile(n):
|
if not os.path.isfile(n):
|
||||||
continue
|
continue
|
||||||
|
# Leave db files with fuzzer of origin untouched
|
||||||
|
if "origin_info" in n:
|
||||||
|
continue
|
||||||
|
|
||||||
base, ext = os.path.splitext(n)
|
base, ext = os.path.splitext(n)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user