From 1d930f9383e438088278286d40c61888fe68b4d1 Mon Sep 17 00:00:00 2001 From: meme Date: Wed, 29 Apr 2020 10:42:34 -0400 Subject: Fix the fix for saving on Windows --- python/examples/export_svg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/examples/export_svg.py b/python/examples/export_svg.py index e8576d82..ce5122ae 100755 --- a/python/examples/export_svg.py +++ b/python/examples/export_svg.py @@ -42,7 +42,7 @@ def save_svg(bv, function): path, 'binaryninja-{filename}-{function}.html'.format(filename=origname, function=address)) outputfile = get_save_filename_input( 'File name for export_svg', 'HTML files (*.html)', filename) - if sys.platfirm == "win32": + if sys.platform == "win32": outputfile = outputfile.replace('/', '\\') if outputfile is None: return -- cgit v1.3.1