Projects STRLCPY got-your-back Commits 79f3da55
🤬
  • ■ ■ ■ ■
    .travis.yml
    skipped 136 lines
    137 137   - os: osx
    138 138   name: "MacOS 10.14"
    139 139   language: generic
    140  - osx_image: xcode11.2
     140 + osx_image: xcode11.3
    141 141   env:
    142 142   - ARCH=x86_64
    143 143   - VMTYPE=build
    skipped 81 lines
  • ■ ■ ■ ■ ■ ■
    gyb.py
    skipped 23 lines
    24 24  __program_name__ = 'Got Your Back: Gmail Backup'
    25 25  __author__ = 'Jay Lee'
    26 26  __email__ = '[email protected]'
    27  -__version__ = '1.33'
     27 +__version__ = '1.34'
    28 28  __license__ = 'Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)'
    29 29  __website__ = 'https://git.io/gyb'
    30 30  __db_schema_version__ = '6'
    skipped 2120 lines
    2151 2151   print('ERROR: GYB requires Python 3.5 or greater.')
    2152 2152   sys.exit(3)
    2153 2153   elif sys.version_info[1] >= 7:
    2154  - sys.stdout.reconfigure(encoding='utf-8', errors='namereplace')
    2155  - sys.stdin.reconfigure(encoding='utf-8', errors='namereplace')
     2154 + sys.stdout.reconfigure(encoding='utf-8', errors='backslashreplace')
     2155 + sys.stdin.reconfigure(encoding='utf-8', errors='backslashreplace')
    2156 2156   try:
    2157 2157   main(sys.argv[1:])
    2158 2158   except MemoryError:
    skipped 19 lines
Please wait...
Page is in error, reload to recover