summaryrefslogtreecommitdiff
path: root/gpsprof
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-23 23:25:42 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-23 23:25:42 -0400
commit33327d30e8b4a6ca3ff4b428e814491e01f88e67 (patch)
tree0dfbd2854d471fcc9a7570adee417d0d2aeaa620 /gpsprof
parent7230e9770726ce80d98d2f648b3da6ceb724ad1b (diff)
downloadgpsd-33327d30e8b4a6ca3ff4b428e814491e01f88e67.tar.gz
Correct an error message.
Diffstat (limited to 'gpsprof')
-rwxr-xr-xgpsprof2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpsprof b/gpsprof
index 38240299..d37a7f8f 100755
--- a/gpsprof
+++ b/gpsprof
@@ -88,7 +88,7 @@ class plotter:
sys.exit(1)
if self.session.data["class"] == "DEVICES":
if len(self.session.data["devices"]) !=1 and not device:
- sys.stderr.write(" ERROR: a few devices connected, you must explicitly specify the device.\n")
+ sys.stderr.write(" ERROR: multiple devices connected, you must explicitly specify the device.\n")
sys.exit(1)
for i in range(len(self.session.data["devices"])):
self.device = copy.copy(self.session.data["devices"][i])