command: Don't be silly in our error messages

Without this, if there are no devices on the local segment, mdt will error out
with "Unable to find any devices called None on your local network segment."
Silly. :P

Change-Id: I2c144a8a6c9925517065cd695e88ee7e50dabab2
diff --git a/mdt/command.py b/mdt/command.py
index f2f54bc..f950477 100644
--- a/mdt/command.py
+++ b/mdt/command.py
@@ -63,7 +63,10 @@
             self.discoverer.discover()
 
         if not self.address:
-            print('Unable to find a device called {0} on your local network segment.'.format(self.device))
+            if not self.device:
+                print('Unable to find any devices on your local network segment.')
+            else:
+                print('Unable to find a device called {0} on your local network segment.'.format(self.device))
             return 1
 
         client = None