Skip to content

Commit

Permalink
Fixing add_item, missing attribute 'login=true'
Browse files Browse the repository at this point in the history
  • Loading branch information
petermanser committed Oct 11, 2011
1 parent cbda1c3 commit 2cd2288
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyzootool/items.py
Expand Up @@ -131,7 +131,8 @@ def add_item(self, url, title, tags=None, description=None, referer=None,
'description': description,
'referer': referer,
'public': public,
'apikey': self.apikey
'apikey': self.apikey,
'login': 'true'
}
url = "%s/api/add/?%s" % (
ROOT_URL, urllib.urlencode(values)
Expand Down

0 comments on commit 2cd2288

Please sign in to comment.