Skip to content

Commit

Permalink
Squash the (hopefully) last encoding bug w.r.t. task-2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Jan 5, 2015
1 parent cd2dda7 commit 14ff33d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion taskw/test/test_datas.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import nose
from nose.tools import eq_, ok_, raises
import os
import sys
import shutil
import tempfile
import datetime
Expand Down
3 changes: 1 addition & 2 deletions taskw/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
logical_replacements = OrderedDict([
('?', '\\?'),
('+', '\\+'),
('"', '\\"'),
('(', '\\('),
(')', '\\)'),
('[', '\\['),
Expand Down Expand Up @@ -94,7 +93,7 @@ def encode_query(value, query=True):
)
else:
args.append(
'%s:\"%s\"' % (
'%s:%s' % (
k,
encode_task_value(v, query=query)
)
Expand Down

0 comments on commit 14ff33d

Please sign in to comment.