From 869b1b5aa637f6510816ef15f45278bc62eae75e Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 18 Jun 2014 14:08:45 -0400 Subject: [PATCH] version bump! 0.23 --- gyb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gyb.py b/gyb.py index a59f536..c1b1242 100644 --- a/gyb.py +++ b/gyb.py @@ -23,7 +23,7 @@ __program_name__ = u'Got Your Back: Gmail Backup' __author__ = u'Jay Lee' __email__ = u'jay0lee@gmail.com' -__version__ = u'0.22' +__version__ = u'0.23' __license__ = u'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' __db_schema_version__ = u'5' __db_schema_min_version__ = u'2' #Minimum for restore @@ -823,7 +823,7 @@ def main(argv): try: restored_uid = int(re.search('^[APPENDUID [0-9]* ([0-9]*)] \(Success\)$', d[0]).group(1)) except AttributeError: - print '\nerror retrieving uid: retrying...' + print '\nerror retrieving uid: %s: retrying...' % d time.sleep(3) imapconn = gimaplib.ImapConnect(generateXOAuthString(options.email, options.service_account), options.debug) imapconn.select(ALL_MAIL)