Skip to content

Commit 0feeb13

Browse files
ianmakadobeDan
authored andcommitted
fix for summary bug
1 parent 7a009a2 commit 0feeb13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

user_sync/rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def log_action_summary(self):
190190
# so first we compute that pad length
191191
pad = 0
192192
for action_description in ACTION_SUMMARY_DESCRIPTION:
193-
if len(action_description[1] > pad):
193+
if len(action_description[1]) > pad:
194194
pad = len(action_description[1])
195195
# and then we use it
196196
for action_description in ACTION_SUMMARY_DESCRIPTION:

0 commit comments

Comments
 (0)