From 28ce9198653dec45777575fcde9f80c952dcb6ac Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 3 Jun 2020 16:17:23 -0400 Subject: [PATCH] Hopefully fixed arg passing issue between cmd.py and oeis.sh --- lib/adapter/cmd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/adapter/cmd.py b/lib/adapter/cmd.py index 8653ae2..5d2ffa6 100644 --- a/lib/adapter/cmd.py +++ b/lib/adapter/cmd.py @@ -130,8 +130,9 @@ class AdapterOeis(CommandAdapter): cmd[0] = _get_abspath(cmd[0]) # cut oeis/ off + # Space delimiter for args to oeis.sh if topic.startswith("oeis/"): - topic = topic[5:] + topic = topic[5:].replace('+',' ') return cmd + [topic]