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 ed72116 commit c7371c0Copy full SHA for c7371c0
dmoj/executors/autoconfig.py
@@ -93,13 +93,14 @@ def main():
93
if result:
94
if not args.silent and sys.stdout.isatty():
95
print(ansi_style('#ansi[Configuration result](green|bold|underline):'), file=sys.stderr)
96
- print(yaml.safe_dump({'runtime': result}, default_flow_style=False).rstrip())
97
else:
98
print(ansi_style('#ansi[No runtimes configured.](red|bold)'), file=sys.__stderr__)
99
if not args.verbose:
100
print(ansi_style('Run #ansi[%s -V](|underline) to see why this is the case.') % (parser.prog,),
101
file=sys.__stderr__)
102
+ print(yaml.safe_dump({'runtime': result}, default_flow_style=False).rstrip())
103
+
104
105
if __name__ == '__main__':
106
main()
0 commit comments