diff options
Diffstat (limited to 'scripts/graph_mesh.py')
-rwxr-xr-x | scripts/graph_mesh.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/graph_mesh.py b/scripts/graph_mesh.py index a62f9df2..af1a809e 100755 --- a/scripts/graph_mesh.py +++ b/scripts/graph_mesh.py @@ -496,7 +496,7 @@ def dump_request(cmd_args): outfile = cmd_args.output if outfile is None: postfix = time.strftime("%Y%m%d_%H%M%S") - outfile = "klipper-bedmesh-%s.json" % (postfix,) + outfile = "kutter-bedmesh-%s.json" % (postfix,) outfile = os.path.abspath(os.path.expanduser(outfile)) print("Saving Mesh Output to '%s'" % (outfile)) with open(outfile, "w") as f: @@ -520,7 +520,7 @@ def main(): "-s", "--scale-plot", action="store_true", - help="Use axis limits reported by Klipper to scale plot X/Y", + help="Use axis limits reported by Kutter to scale plot X/Y", ) plot_parser.add_argument( "-p", @@ -542,20 +542,20 @@ def main(): plot_parser.add_argument( "input", metavar="<input>", - help="Path/url to Klipper Socket or path to json file", + help="Path/url to Kutter Socket or path to json file", ) plot_parser.set_defaults(func=plot_mesh_data) analyze_parser.add_argument( "input", metavar="<input>", - help="Path/url to Klipper Socket or path to json file", + help="Path/url to Kutter Socket or path to json file", ) analyze_parser.set_defaults(func=analyze) dump_parser.add_argument( "-o", "--output", type=str, default=None, help="Json output file path" ) dump_parser.add_argument( - "input", metavar="<input>", help="Path or url to Klipper Socket" + "input", metavar="<input>", help="Path or url to Kutter Socket" ) dump_parser.set_defaults(func=dump_request) cmd_args = parser.parse_args() |