Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Delta-Sierra committed Oct 13, 2016
1 parent 9cc5534 commit b1e6765
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/situational-awareness/tags_count.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ def init(url, key):
else:
result = 'There is no event during the studied period'

text = 'Studied pediod: from '
if args.begindate is None:
text = text + '1970-01-01'
else:
text = text + str(args.begindate.date())
text = 'Studied pediod: from '
if args.begindate is None:
text = text + '1970-01-01'
else:
text = text + str(args.begindate.date())
text = text + ' to '
if args.enddate is None:
text = text + str(datetime.now().date())
else:
text = text + str(args.enddate.date())
if args.enddate is None:
text = text + str(datetime.now().date())
else:
text = text + str(args.enddate.date())

print('\n========================================================')
print(text)
Expand Down

0 comments on commit b1e6765

Please sign in to comment.