diff options
-rw-r--r-- | cerbero/utils/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/utils/shell.py b/cerbero/utils/shell.py index 60f07393..d37d410b 100644 --- a/cerbero/utils/shell.py +++ b/cerbero/utils/shell.py @@ -597,7 +597,7 @@ C:\\msys64\\msys2_shell.cmd -ucrt64 -defterm -no-start -here -use-full-path -c ' rc_file = '.bashrc' rc_opt = '--rcfile' prompt = os.environ.get('PS1', '') - prompt = 'PS1="\[\033[01;32m\][cerbero-{platform}-{arch}]\[\033[00m\] $PS1"'.format( + prompt = r'PS1="\[\033[01;32m\][cerbero-{platform}-{arch}]\[\033[00m\] $PS1"'.format( platform=platform, arch=arch) shellrc = SHELLRC.format(rc_file=rc_file, sourcedirsh=sourcedirsh, prompt=prompt, bash_completions=bash_completions, path=env['PATH']) |