Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 87c7189

Browse files
committed
Fix pylint error
1 parent 5fb04b6 commit 87c7189

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

market/contracts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -949,8 +949,8 @@ def payment_received(self):
949949
if self.db.sales.get_status(order_id) == 0:
950950
self.db.sales.update_status(order_id, 1)
951951
self.db.sales.status_changed(order_id, 1)
952-
self.notification_listener.notify(unhexlify(buyer_guid), handle, "new order", order_id,
953-
title, image_hash)
952+
self.notification_listener.notify(unhexlify(buyer_guid), handle, "new order",
953+
order_id, title, image_hash)
954954

955955
notification = SMTPNotification(self.db)
956956
notification.send("[OpenBazaar] Payment for Order Received",

0 commit comments

Comments
 (0)