Skip to content

Commit

Permalink
GYB 1.34
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee committed Jan 4, 2020
1 parent 709814b commit 79f3da5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ matrix:
- os: osx
name: "MacOS 10.14"
language: generic
osx_image: xcode11.2
osx_image: xcode11.3
env:
- ARCH=x86_64
- VMTYPE=build
Expand Down
6 changes: 3 additions & 3 deletions gyb.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
__program_name__ = 'Got Your Back: Gmail Backup'
__author__ = 'Jay Lee'
__email__ = '[email protected]'
__version__ = '1.33'
__version__ = '1.34'
__license__ = 'Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)'
__website__ = 'https://git.io/gyb'
__db_schema_version__ = '6'
Expand Down Expand Up @@ -2151,8 +2151,8 @@ def main(argv):
print('ERROR: GYB requires Python 3.5 or greater.')
sys.exit(3)
elif sys.version_info[1] >= 7:
sys.stdout.reconfigure(encoding='utf-8', errors='namereplace')
sys.stdin.reconfigure(encoding='utf-8', errors='namereplace')
sys.stdout.reconfigure(encoding='utf-8', errors='backslashreplace')
sys.stdin.reconfigure(encoding='utf-8', errors='backslashreplace')
try:
main(sys.argv[1:])
except MemoryError:
Expand Down

0 comments on commit 79f3da5

Please sign in to comment.