Skip to content

Commit

Permalink
Fix: Undefined variable 'this' should be 'self'
Browse files Browse the repository at this point in the history
Pointyhat-to: Eygene Ryabinkin
Signed-off-by: Eygene Ryabinkin <[email protected]>
  • Loading branch information
shuber2 authored and konvpalto committed Mar 6, 2014
1 parent 829c9cf commit af2d6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion offlineimap/folder/Base.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def sync_this(self):
if not self._dynamic_folderfilter:
return self._sync_this
else:
return this.repository.should_sync_folder(self.ffilter_name)
return self.repository.should_sync_folder(self.ffilter_name)

@property
def utime_from_message(self):
Expand Down

0 comments on commit af2d6dc

Please sign in to comment.