fix indentation

pull/34/head
Déborah Servili 2016-10-13 10:11:18 +02:00
parent 9cc55341f0
commit b1e6765bb3
1 changed files with 9 additions and 9 deletions

View File

@ -47,16 +47,16 @@ if __name__ == '__main__':
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)