Skip to content

Commit

Permalink
Merge pull request #63 from sbrunner/pillow
Browse files Browse the repository at this point in the history
Pillow and pep8
  • Loading branch information
twpayne committed Aug 3, 2013
2 parents 24539fb + 1e6cd27 commit 4e292e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
@@ -1,7 +1,6 @@
before_install:
- "sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib/"

install: pip install PIL coverage pep8 pyflakes requests
install:
- pip install -r requirements.txt
- pip install pep8 pyflakes

language: python

Expand Down
4 changes: 2 additions & 2 deletions tilecloud/lib/sqlite3_.py
Expand Up @@ -51,12 +51,12 @@ def __setitem__(self, key, value):
def iteritems(self):
return imap(self._unpackitem,
query(self.connection,
self.ITERITEMS_SQL))
self.ITERITEMS_SQL))

def itervalues(self):
return imap(self._unpackvalue,
query(self.connection,
self.ITERVALUES_SQL))
self.ITERVALUES_SQL))

def keys(self):
return list(iter(self))
Expand Down

0 comments on commit 4e292e8

Please sign in to comment.