diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-10 22:04:52 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:33 +0100 |
commit | c770c62fdcf35e76ed03361de901964bbe68433a (patch) | |
tree | 0de939607d4f9db16bb8972d85eac50c4e08c6d3 | |
parent | ad543e2e41b7e86d83cf0518b096ef82627bf891 (diff) | |
download | poky-c770c62fdcf35e76ed03361de901964bbe68433a.tar.gz |
Add a missing import of print_function
(Bitbake rev: 30ae747cc5c733512e417c61fca23c0cd15b0e44)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index b4d08d6cdd..fec9c6ed79 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
@@ -24,6 +24,7 @@ BitBake build tools. | |||
24 | # | 24 | # |
25 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 25 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
26 | 26 | ||
27 | from __future__ import print_function | ||
27 | import os, re | 28 | import os, re |
28 | import bb | 29 | import bb |
29 | from bb import data | 30 | from bb import data |