Skip to content

Commit 552e5f3

Browse files
committed
Added version
1 parent e1aefb7 commit 552e5f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

runtools.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
import argparse
88
import traceback
99

10+
__version__ = "v1.0.0-beta1"
11+
1012
def main():
11-
parser = argparse.ArgumentParser(description="MAEC Multi-Tool Translator")
13+
parser = argparse.ArgumentParser(description="MAEC Multi-Tool Translator " + __version__)
1214
input_group = parser.add_mutually_exclusive_group(required=True)
1315
input_group.add_argument("--md5", "--hash", help="Indicates input is an MD5 hash of the file to be fetched", action="store_true", default=False)
1416
input_group.add_argument("--file", help="Indicates input is a file path", action="store_true", default=False)

0 commit comments

Comments
 (0)