Skip to content

Commit

Permalink
Remove test and unused module
Browse files Browse the repository at this point in the history
Add a little paranoia to the recursive check.
  • Loading branch information
Allen Luce committed Jan 27, 2016
1 parent d34dafe commit 8d59409
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
3 changes: 1 addition & 2 deletions awis/__init__.py
Expand Up @@ -21,7 +21,6 @@
import datetime
import hashlib
import hmac
import sys

try:
from urllib.request import urlopen
Expand Down Expand Up @@ -125,7 +124,7 @@ def category_listings(self, path, SortBy="Popularity", Recursive=False, Start=1,
"Path": quote(path),
"SortBy": SortBy,
"Start": str(Start),
"Recursive": str(Recursive),
"Recursive": str(not not Recursive),
"Descriptions": str(Descriptions)
}
if Count < 100:
Expand Down
19 changes: 0 additions & 19 deletions test_awis.py

This file was deleted.

0 comments on commit 8d59409

Please sign in to comment.