1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2026-04-24 20:56:11 +02:00

version bump

This commit is contained in:
Kelly Brazil
2026-03-16 12:18:49 -07:00
parent b9eec1a5cd
commit 45b23e8b3c
+2 -6
View File
@@ -71,13 +71,12 @@ Examples:
]
"""
import re
import jc.utils
class info():
"""Provides parser metadata (version, author, etc.)"""
version = '1.2'
version = '1.3'
description = 'hashsum command parser (`md5sum`, `shasum`, etc.)'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
@@ -163,7 +162,4 @@ def parse(data, raw=False, quiet=False):
}
raw_output.append(item)
if raw:
return raw_output
else:
return _process(raw_output)
return raw_output if raw else _process(raw_output)