Skip to content

Commit

Permalink
Put a slash between system and station when combining them as a name
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Sep 15, 2014
1 parent 17c6d6e commit 8c1dad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8c1dad0

Please sign in to comment.