Skip to content

Commit f502a7b

Browse files
committed
bugfix
1 parent 670ece9 commit f502a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mytonctrl/mytonctrl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ def GetConfig(ton, args):
10111011
def PrintComplaintsList(ton, args):
10121012
past = "past" in args
10131013
data = ton.GetComplaints(past=past)
1014-
if (data is None or len(complaints)data 0):
1014+
if (data is None or len(data) == 0):
10151015
print("No data")
10161016
return
10171017
if "--json" in args:

0 commit comments

Comments
 (0)