Skip to content

Commit

Permalink
fix function name - build failed
Browse files Browse the repository at this point in the history
  • Loading branch information
sidgupta committed Apr 8, 2016
1 parent 91bac04 commit b828f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions caravel/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ def explore(self, datasource_type, datasource_id):

action = request.args.get('action')
if action in ('save', 'overwrite'):
return self.saveOrOverwriteSlice(request.args, slc)
return self.saveoroverwriteslice(request.args, slc)

viz_type = request.args.get("viz_type")
if not viz_type and datasource.default_endpoint:
Expand Down Expand Up @@ -522,7 +522,7 @@ def explore(self, datasource_type, datasource_id):
mimetype="application/json")
return resp

def saveOrOverwriteSlice(self, args, slc):
def saveoroverwriteslice(self, args, slc):
"""Saves (inserts or overwrite a slice) """
slice_name = args.get('slice_name')
action = args.get('action')
Expand Down

0 comments on commit b828f4b

Please sign in to comment.