From 3b78e0592e4cb14048a9b02e48cdbeb460be6445 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sat, 25 Oct 2014 20:45:42 -0700 Subject: [PATCH] Better explanation of why nothing matches --- trade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trade.py b/trade.py index 599c1482..f306ebda 100755 --- a/trade.py +++ b/trade.py @@ -511,7 +511,7 @@ def runCommand(args): routes = [ route for route in routes if viaStations & set(route.route[viaStartPos:]) ] if not routes: - print("No routes matched your critera, or price data for that route is missing.") + print("No profitable trades matched your critera, or price data along the route is missing.") return routes.sort()