Rename mtb to mt after library changes
The mtb library supplied by touch_firmware_test has been renamed to
mt after the addition of mta support. This CL changes the names of
the references to mtb.
BUG=none
TEST=manually ran webplot.py and it didn't complain about being
unable to import libraries anymore.
Change-Id: I4a35576d564cadc45716016ae627b74e1d0c0142
Signed-off-by: Charlie Mooney <[email protected]>
Reviewed-on: https://chromium-review.googlesource.com/251120
diff --git a/remote/mt b/remote/mt
new file mode 120000
index 0000000..991ff39
--- /dev/null
+++ b/remote/mt
@@ -0,0 +1 @@
+../../touch_firmware_test/mt/
\ No newline at end of file
diff --git a/webplot/webplot.py b/webplot/webplot.py
index b27b236..1080a52 100755
--- a/webplot/webplot.py
+++ b/webplot/webplot.py
@@ -149,7 +149,7 @@
def _GetLiveStreamSnapshots():
"""Get live stream snapshots."""
cherrypy.log('Start getting the live stream snapshots....')
- snapshot_stream = remote.mtb.SnapshotStream(device.device)
+ snapshot_stream = remote.mt.SnapshotStream(device.device)
with open(saved_file, 'w') as f:
while True:
snapshot, events, leaving_slots = snapshot_stream.Get()