We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e977cc commit a459860Copy full SHA for a459860
adoc_math/__main__.py
@@ -75,8 +75,6 @@ def parse_args():
75
def main():
76
args = parse_args()
77
78
- print(args)
79
-
80
# The idea here is that the arguments specified in `parse_args` will have value
81
# None if they are not specified by the user. If we just use something like `i_impl.AdocMath(default_alignment=args.default_alignment`
82
# etc (for all other arguments), then we'll lose the default values
adoc_math/_common/e_utils.py
@@ -21,7 +21,7 @@ def run_cmd(
21
stdin=bytes(),
22
raise_on_error=True,
23
) -> Tuple[StdOut, StdErr]:
24
- print(f"Running {cmd}...")
+ logger.info(f"Running {cmd}...")
25
process = subprocess.Popen(
26
cmd,
27
stdout=subprocess.PIPE,
0 commit comments