Skip to content

Commit

Permalink
Merge pull request #1 from zodman/master
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
Lispython committed Jul 25, 2014
2 parents c884f5d + 958dfcf commit 9681a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alstat/console.py
Expand Up @@ -65,6 +65,6 @@ def main():
print(" ".join([v for k, v in x.iteritems() if k in args]))

if options.verbose:
print("Analyze completed {time_duration} sec at {time} ".fortam(time_duration=(time.time()-t) * 10, time=time.ctime()))
print("Analyze completed {time_duration} sec at {time} ".format(time_duration=(time.time()-t) * 10, time=time.ctime()))
sys.exit(1)

0 comments on commit 9681a89

Please sign in to comment.