Skip to content

Commit

Permalink
Merge pull request #6 from ReelDx/staging
Browse files Browse the repository at this point in the history
production ready
  • Loading branch information
andrewintech committed Feb 18, 2016
2 parents bbbe72e + c60e043 commit d90bde1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/api_tools_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def user_list(account_jwt):
if user_data:
for user_obj in user_data:
tmp_app_id = user_obj.get('app_id')
if(int(tmp_app_id) == int(keys.app_id)):
if(tmp_app_id == keys.app_id):
app_user_id = str(user_obj.get('app_user_id'))
app_info, app_user_id = app_user_id.split('|',1)
temp_id = str(user_obj.get('id'))
Expand Down
2 changes: 1 addition & 1 deletion bin/render_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def render_video_play(smil_data):
# output: HTML formatted Response (str)
#

output_data = None
output_data = ""

# JW Player Enterprise
if keys.jw_path and keys.jw_key:
Expand Down

0 comments on commit d90bde1

Please sign in to comment.