diff options
Diffstat (limited to 'gegps')
-rwxr-xr-x | gegps | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -20,8 +20,9 @@ # Modified by Chen Wei <weichen302@aol.com> for use with gpsd # Cleaned up and adapted for the GPSD project by Eric S. Raymond. -# This code runs under both Python 2 and Python 3. Preserve this property! -from __future__ import print_function, division +# This code runs compatibly under Python 2 and 3.x for x >= 2. +# Preserve this property! +from __future__ import absolute_import, print_function, division import sys, os, getopt import gps |