diff options
author | marmeladema <xademax@gmail.com> | 2019-10-20 19:43:53 +0100 |
---|---|---|
committer | marmeladema <xademax@gmail.com> | 2019-10-20 23:43:26 +0100 |
commit | bed6f2dbec2b5992d5c32d2cfea136e03e5cdcd7 (patch) | |
tree | 5d04c3b7257913ec3afe784aa7b80cfd71ce603c /python/tidy/servo_tidy/tidy.py | |
parent | 865d7377b30c43c98072a6883a50f98d97e2b45a (diff) | |
download | servo-bed6f2dbec2b5992d5c32d2cfea136e03e5cdcd7.tar.gz servo-bed6f2dbec2b5992d5c32d2cfea136e03e5cdcd7.zip |
Use relative import statements to be compatible with Python3
Diffstat (limited to 'python/tidy/servo_tidy/tidy.py')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 2c9985bca34..d4ad6cfde5f 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -24,7 +24,7 @@ import colorama import toml import voluptuous import yaml -from licenseck import OLD_MPL, MPL, APACHE, COPYRIGHT, licenses_toml, licenses_dep_toml +from .licenseck import OLD_MPL, MPL, APACHE, COPYRIGHT, licenses_toml, licenses_dep_toml from six import iteritems topdir = os.path.abspath(os.path.dirname(sys.argv[0])) wpt = os.path.join(topdir, "tests", "wpt") |