Fixing long lines in apprtc.py.

These long lines causes the presubmit to get angry.

BUG=webrtc:2678
R=braveyao@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/4369004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5193 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org 2013-11-28 17:45:08 +00:00
parent e1fc3f22ea
commit 03c7a35ac0

View File

@ -318,7 +318,7 @@ class MainPage(webapp2.RequestHandler):
ts_pwd = self.request.get('tp')
# Use "audio" and "video" to set the media stream constraints. Defined here:
# http://dev.w3.org/2011/webrtc/editor/getusermedia.html#idl-def-MediaStreamConstraints
# http://goo.gl/V7cZg
#
# "true" and "false" are recognized and interpreted as bools, for example:
# "?audio=true&video=false" (Start an audio-only call.)
@ -336,11 +336,8 @@ class MainPage(webapp2.RequestHandler):
# Keys starting with "goog" will be added to the "optional" key; all others
# will be added to the "mandatory" key.
#
# The audio keys are defined here:
# https://code.google.com/p/webrtc/source/browse/trunk/talk/app/webrtc/localaudiosource.cc
#
# The video keys are defined here:
# https://code.google.com/p/webrtc/source/browse/trunk/talk/app/webrtc/videosource.cc
# The audio keys are defined here: talk/app/webrtc/localaudiosource.cc
# The video keys are defined here: talk/app/webrtc/videosource.cc
audio = self.request.get('audio')
video = self.request.get('video')