We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 645773d commit b584da5Copy full SHA for b584da5
plain2code.py
@@ -616,6 +616,8 @@ def render(args):
616
render(args)
617
except InvalidRenderRange as e:
618
print(f"Error rendering plain code. Invalid render range: {args.render_range}\n")
619
+ except FileNotFoundError as e:
620
+ print(f"Error rendering plain code: {str(e)}\n")
621
except Exception as e:
622
print(f"Error rendering plain code: {str(e)}\n")
623
traceback.print_exc()
0 commit comments