Skip to content

Commit 77f4253

Browse files
author
Russell Stewart
committed
Fixed bug not replacing tics inside post_cmd.
1 parent 60b084c commit 77f4253

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pythonpy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ if args.expression:
7474
args.expression = args.expression.replace("`", "'")
7575
if args.pre_cmd:
7676
args.pre_cmd = args.pre_cmd.replace("`", "'")
77+
if args.post_cmd:
78+
args.post_cmd = args.post_cmd.replace("`", "'")
7779

7880
lazy_imports(args.expression, args.pre_cmd, args.post_cmd)
7981

0 commit comments

Comments
 (0)