diff options
| author | meme <meme@users.noreply.github.com> | 2020-04-29 10:42:34 -0400 |
|---|---|---|
| committer | Jordan <jordan@psifertex.com> | 2020-04-29 11:09:49 -0400 |
| commit | 1d930f9383e438088278286d40c61888fe68b4d1 (patch) | |
| tree | 1cec577fc8fd79ebacc8d23eeab5e7f244939014 /python | |
| parent | ce385dc73e2d264fc2404c75b060a8a42486e27b (diff) | |
Fix the fix for saving on Windows
Diffstat (limited to 'python')
| -rwxr-xr-x | python/examples/export_svg.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
