Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
fix #263: fix a commented-out codeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmeneghello committed Feb 14, 2016
1 parent b9af2a9 commit ed31ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynab/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def scan(group_name, direction='forward', date=None, target=None, limit=None):

iterations += 1

if limit and iterations >= 3:#* config.scan.get('message_scan_limit') >= limit:
if limit and config.scan.get('message_scan_limit') >= limit:
log.info(
'group: {}: scan limit reached, ending early (will continue later)'.format(group_name))
return False
Expand Down

1 comment on commit ed31ac1

@Herkemer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this actually cause the limit code to fire?

Please sign in to comment.