summaryrefslogtreecommitdiffstats
path: root/modules/oblique.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/oblique.py')
-rwxr-xr-xmodules/oblique.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/oblique.py b/modules/oblique.py
index 3622b4a..6d6156c 100755
--- a/modules/oblique.py
+++ b/modules/oblique.py
@@ -30,9 +30,9 @@ def mappings(uri):
def service(phenny, input, command, args):
t = o.services[command]
- template = t.replace('${args}', urllib.quote(args.encode('utf-8')))
- template = template.replace('${nick}', urllib.quote(input.nick))
- uri = template.replace('${sender}', urllib.quote(input.sender))
+ template = t.replace('${args}', urllib.quote(args.encode('utf-8'), ''))
+ template = template.replace('${nick}', urllib.quote(input.nick, ''))
+ uri = template.replace('${sender}', urllib.quote(input.sender, ''))
info = web.head(uri)
if isinstance(info, list):