Skip to content

Commit

Permalink
[clone_app] Fix key comparson, close #189
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Feb 14, 2016
1 parent 951b58d commit 07fdb44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions couchapp/clone_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ def setup_missing(self):
for key in self.doc.iterkeys():
if key.startswith('_'):
continue
elif key in ('couchapp'):
elif key in ('couchapp',):
self.setup_couchapp_json()
elif key in ('views'):
elif key in ('views',):
self.setup_views()
elif key in ('shows', 'lists', 'filter', 'updates'):
self.setup_func(key)
Expand Down

0 comments on commit 07fdb44

Please sign in to comment.