Skip to content

Commit

Permalink
fix. don't check uidvalidity on restores
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee committed Jun 24, 2014
1 parent 06813a9 commit 3eb7f70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gyb.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,9 +616,9 @@ def main(argv):
sqlconn.commit()
sys.exit(0)

if db_settings['uidvalidity'] != uidvalidity:
print "Because of changes on the Gmail server, this folder cannot be used for incremental backups."
sys.exit(3)
if db_settings['uidvalidity'] != uidvalidity:
print "Because of changes on the Gmail server, this folder cannot be used for incremental backups."
sys.exit(3)

# BACKUP #
if options.action == 'backup':
Expand Down

0 comments on commit 3eb7f70

Please sign in to comment.