diff options
author | Nick Vatamaniuc <vatamane@apache.org> | 2018-10-03 13:30:18 -0400 |
---|---|---|
committer | Nick Vatamaniuc <vatamane@apache.org> | 2018-11-26 17:49:33 -0500 |
commit | 2a3467d51415569e5f93c0cf4afbc5bbcd1ba17b (patch) | |
tree | f033c0f7aa578c035720f75d2f23eaa9a3f41bf8 /build-aux/logfile-uploader.py | |
parent | 1347806d2feebce53325070b475f9e211d240ddf (diff) | |
download | couchdb-2a3467d51415569e5f93c0cf4afbc5bbcd1ba17b.tar.gz |
Switch to python 3
Ran 2to3 and fixed a few deprecated warnings
Issue #1632
Diffstat (limited to 'build-aux/logfile-uploader.py')
-rwxr-xr-x | build-aux/logfile-uploader.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/logfile-uploader.py b/build-aux/logfile-uploader.py index a1ff7e4a7..c95eab532 100755 --- a/build-aux/logfile-uploader.py +++ b/build-aux/logfile-uploader.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python3 # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of @@ -12,7 +12,7 @@ # License for the specific language governing permissions and limitations under # the License. -from __future__ import print_function + import datetime import glob |