commit | e75d2d2d995dad4eeed1bd306ef987adabac2bfc | [log] [tgz] |
---|---|---|
author | kkinnunen <kkinnunen@nvidia.com> | Wed Dec 03 04:38:46 2014 -0800 |
committer | Commit bot <commit-bot@chromium.org> | Wed Dec 03 04:38:46 2014 -0800 |
tree | 7c0bacce8dbc9fb0538fb63123c9296f801a86e4 | |
parent | 3a6aa8697831e1957f7a47160c984f28f6e83182 [diff] |
Remove Google Storage scheme prefix correctly from gs base name in webpages_playback In python, str.lstrip([chars]) means "lstrip any of the chars from str", not "remove prefix". Thus "gs://skia".lstrip("gs://") yields "kia". Replace with custom function stripping the prefix from lstrip()ed gs base name. Review URL: https://codereview.chromium.org/780493002