@@ -37,7 +37,7 @@ def update_order_internal_id(self, open_date, dry_run):
37
37
response = requests .post (url , headers = self .headers , json = data )
38
38
assert response .status_code == 200 , (response .status_code , response .reason )
39
39
40
- self .log .info ('{} Updated internal id for order: {} - {}' .format (date . today (), ORDER_ID , project .id ))
40
+ self .log .info ('Updated internal id for order: {} - {}' .format (ORDER_ID , project .id ))
41
41
else :
42
42
print ('Dry run: {} Updated internal id for order: {} - {}' .format (date .today (), ORDER_ID , project .id ))
43
43
@@ -79,7 +79,7 @@ def update_order_status(self, to_date, dry_run):
79
79
#Order portal sends a mail to user on status change
80
80
response = requests .post (url , headers = self .headers )
81
81
assert response .status_code == 200 , (response .status_code , response .reason )
82
- self .log .info ('{} Updated status for order {} from {} to {}' .format (date . today (), ORDER_ID , data ['status' ], status_set ))
82
+ self .log .info ('Updated status for order {} from {} to {}' .format (ORDER_ID , data ['status' ], status_set ))
83
83
else :
84
84
print ('Dry run: {} Updated status for order {} from {} to {}' .format (date .today (), ORDER_ID , data ['status' ], status_set ))
85
85
0 commit comments