WatchWebsite: replace %s by {var}

This commit is contained in:
Némunaire 2012-12-01 02:20:09 +01:00
commit 50857eea80
2 changed files with 8 additions and 13 deletions

View file

@ -113,7 +113,7 @@ class AspellLinux(object):
return bool(
self.__lib.aspell_speller_check(
self.__speller,
word,
_to_bytes(word),
len(word)
))
else:
@ -132,7 +132,7 @@ class AspellLinux(object):
return self._aspellwordlist(
self.__lib.aspell_speller_suggest(
self.__speller,
word,
_to_bytes(word),
len(word)
))
else: