diff --git a/lib/adapter/cmd.py b/lib/adapter/cmd.py index be1df97..5e70c46 100644 --- a/lib/adapter/cmd.py +++ b/lib/adapter/cmd.py @@ -130,10 +130,10 @@ class AdapterOeis(CommandAdapter): cmd[0] = _get_abspath(cmd[0]) # cut oeis/ off - # Replace all non (alphanumeric, '-') chars with Spaces to delimit args to oeis.sh + # Replace all non (alphanumeric, '-', ':') chars with Spaces to delimit args to oeis.sh if topic.startswith("oeis/"): topic = topic[5:] - topic = re.sub('[^a-zA-Z0-9-]+', ' ', topic) + topic = re.sub('[^a-zA-Z0-9-:]+', ' ', topic) return cmd + [topic]