From 8c1dad0501aaa77b20ec819f7aa767af093dcc72 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 15 Sep 2014 11:33:52 -0700 Subject: [PATCH] Put a slash between system and station when combining them as a name --- tradedb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tradedb.py b/tradedb.py index 747c6701..318915a0 100644 --- a/tradedb.py +++ b/tradedb.py @@ -187,7 +187,7 @@ def name(self): def str(self): - return '%s %s' % (self.system.name(), self.dbname) + return '%s/%s' % (self.system.name(), self.dbname) def __repr__(self):