Fix incorrect usage message for gemcalc
This commit is contained in:
parent
9c3cfed840
commit
836bb886af
2 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ TO CALCULATE NUMBER OF LOVE GEMS YOU'LL HAVE ON A GIVEN DATE:
|
||||||
[-d | --date] Date to calculate gem count for (MM/DD/YYYY)
|
[-d | --date] Date to calculate gem count for (MM/DD/YYYY)
|
||||||
|
|
||||||
TO CALCULATE HOW LONG UNTIL YOU WILL GET A CERTAIN NUMBER OF GEMS:
|
TO CALCULATE HOW LONG UNTIL YOU WILL GET A CERTAIN NUMBER OF GEMS:
|
||||||
[-G | --desired-gems] Calculate level that card will be at given EXP
|
[-G | --desired-gems] Calculate date when you will have that number of gems
|
||||||
```
|
```
|
||||||
|
|
||||||
Example: How many love gems will you have on Christmas?
|
Example: How many love gems will you have on Christmas?
|
||||||
|
|
|
@ -134,7 +134,7 @@ def usage():
|
||||||
print "[-d | --date] Date to calculate gem count for (MM/DD/YYYY)"
|
print "[-d | --date] Date to calculate gem count for (MM/DD/YYYY)"
|
||||||
print ""
|
print ""
|
||||||
print "TO CALCULATE HOW LONG UNTIL YOU WILL GET A CERTAIN NUMBER OF GEMS:"
|
print "TO CALCULATE HOW LONG UNTIL YOU WILL GET A CERTAIN NUMBER OF GEMS:"
|
||||||
print "[-G | --desired-gems] Calculate level that card will be at given EXP"
|
print "[-G | --desired-gems] Calculate date when you will have that number of gems"
|
||||||
|
|
||||||
def main(argv):
|
def main(argv):
|
||||||
current_gems = 0
|
current_gems = 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue