Skip to content

Commit

Permalink
Python3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kostajh committed Jun 20, 2013
1 parent 5b1b57f commit d46ec7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskw/warrior.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def _load_task(self, **kw):
# fail in taskw.
search = kw[key][4:]
else:
search = str(kw[key])
search = six.text_type(kw[key])
task = subprocess.Popen([
'task', 'rc:%s' % self.config_filename,
'rc.verbose=nothing', search,
Expand Down

0 comments on commit d46ec7f

Please sign in to comment.