mirror of https://github.com/MISP/PyMISP
fix indentation
parent
9cc55341f0
commit
b1e6765bb3
|
@ -47,16 +47,16 @@ if __name__ == '__main__':
|
||||||
else:
|
else:
|
||||||
result = 'There is no event during the studied period'
|
result = 'There is no event during the studied period'
|
||||||
|
|
||||||
text = 'Studied pediod: from '
|
text = 'Studied pediod: from '
|
||||||
if args.begindate is None:
|
if args.begindate is None:
|
||||||
text = text + '1970-01-01'
|
text = text + '1970-01-01'
|
||||||
else:
|
else:
|
||||||
text = text + str(args.begindate.date())
|
text = text + str(args.begindate.date())
|
||||||
text = text + ' to '
|
text = text + ' to '
|
||||||
if args.enddate is None:
|
if args.enddate is None:
|
||||||
text = text + str(datetime.now().date())
|
text = text + str(datetime.now().date())
|
||||||
else:
|
else:
|
||||||
text = text + str(args.enddate.date())
|
text = text + str(args.enddate.date())
|
||||||
|
|
||||||
print('\n========================================================')
|
print('\n========================================================')
|
||||||
print(text)
|
print(text)
|
||||||
|
|
Loading…
Reference in New Issue