Skip to content

Commit

Permalink
Fixed bug with --detail
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Aug 12, 2014
1 parent a434be2 commit 1324a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tradecalc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def detail(self, verbose=False):
for item in hop[0]:
str += " %d*%s," % (item[1], item[0])
str += "\n"
if verbose and len(self.jumps) > 1:
if verbose:
str += " | "
str += " -> ".join([ jump.str() for jump in self.jumps[i] ])
str += "\n"
Expand Down

0 comments on commit 1324a32

Please sign in to comment.