diff options
| author | Duncan Ogilvie <mr.exodia.tpodt@gmail.com> | 2024-01-06 18:02:38 +0100 |
|---|---|---|
| committer | Duncan Ogilvie <mr.exodia.tpodt@gmail.com> | 2024-01-06 18:37:17 +0100 |
| commit | 0b0de2cbd1a5949cd8819899169446c5cf524cc3 (patch) | |
| tree | 060d114617d80f87d748098345d1cb4e2dde0b55 /miasm/analysis/debugging.py | |
| parent | f2335970fea3670c261c162e65e72ebef2a4de2e (diff) | |
| download | focaccia-miasm-0b0de2cbd1a5949cd8819899169446c5cf524cc3.tar.gz focaccia-miasm-0b0de2cbd1a5949cd8819899169446c5cf524cc3.zip | |
Replace /!\ with [!] to fix a few warnings
miasm/expression/expression_helper.py:90: SyntaxWarning: invalid escape sequence '\ '
Diffstat (limited to 'miasm/analysis/debugging.py')
| -rw-r--r-- | miasm/analysis/debugging.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/analysis/debugging.py b/miasm/analysis/debugging.py index f114d901..d5f59d49 100644 --- a/miasm/analysis/debugging.py +++ b/miasm/analysis/debugging.py @@ -377,7 +377,7 @@ class DebugCmd(cmd.Cmd, object): args = arg.split(" ") if args[-1].lower() not in ["on", "off"]: - self.print_warning("/!\ %s not in 'on' / 'off'" % args[-1]) + self.print_warning("[!] %s not in 'on' / 'off'" % args[-1]) return mode = args[-1].lower() == "on" d = {} |