aboutsummaryrefslogtreecommitdiffstats
path: root/testscript
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-04-21 16:51:50 +0000
committerbloodstalker <thabogre@gmail.com>2020-04-21 16:51:50 +0000
commitdbbbb3eebcb99116b9afd768967e7492882737a9 (patch)
treeb312d577582141efa1e735f663ed5fc5e6cec217 /testscript
parentremoved the debug prints. boost is no longer a dependency. (diff)
downloadcgrep-dbbbb3eebcb99116b9afd768967e7492882737a9.tar.gz
cgrep-dbbbb3eebcb99116b9afd768967e7492882737a9.zip
work in progress
Diffstat (limited to 'testscript')
-rwxr-xr-xtestscript/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/testscript/main.py b/testscript/main.py
index 4990d10..013ab99 100755
--- a/testscript/main.py
+++ b/testscript/main.py
@@ -2,13 +2,15 @@
# _*_ coding=utf-8 _*_
import argparse
+import subprocess
+import os
+import sys
class Argparser(object):
def __init__(self):
parser = argparse.ArgumentParser()
parser.add_argument("--string", type=str, help="string")
parser.add_argument("--bool", action="store_true", help="bool", default=False)
- parser.add_argument("--dbg", action="store_true", help="debug", default=False)
self.args = parser.parse_args()
def main():