Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kim committed Feb 8, 2017
1 parent 8159996 commit aea25fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGES
=======

0.9.2 (2017-02-08)
------------------

* Remove debug print


0.9.1 (2017-02-07)
------------------

Expand Down
3 changes: 1 addition & 2 deletions yarl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .quoting import quote, unquote

__version__ = '0.9.1'
__version__ = '0.9.2'

__all__ = ['URL']

Expand Down Expand Up @@ -689,7 +689,6 @@ def with_query(self, *args, **kwargs):
"should be str or int, got {!r}".format(v))
lst.append(quoter(k, safe='/?:@')+'='+quoter(v, safe='/?:@;'))
query = '&'.join(lst)
print(k, v, query)
elif isinstance(query, str):
query = _quote(query, safe='/?:@',
protected=PROTECT_CHARS,
Expand Down

0 comments on commit aea25fc

Please sign in to comment.