commit:     cf957998881fd19205c28bcc1568f9dce949545f
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 22 13:35:26 2015 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 13:35:26 2015 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=cf957998

repoman: Add missed print_function, unicode_literals imports to files using 
print()

 pym/repoman/actions.py                   | 2 ++
 pym/repoman/gpg.py                       | 2 ++
 pym/repoman/modules/commit/repochecks.py | 2 ++
 pym/repoman/profile.py                   | 2 ++
 pym/repoman/scanner.py                   | 2 ++
 pym/repoman/vcs/vcs.py                   | 2 ++
 6 files changed, 12 insertions(+)

diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py
index 9d97b20..9dda88e 100644
--- a/pym/repoman/actions.py
+++ b/pym/repoman/actions.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 import errno
 import io
 import logging

diff --git a/pym/repoman/gpg.py b/pym/repoman/gpg.py
index a6c4c5f..90fe749 100644
--- a/pym/repoman/gpg.py
+++ b/pym/repoman/gpg.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 import errno
 import logging
 import subprocess

diff --git a/pym/repoman/modules/commit/repochecks.py 
b/pym/repoman/modules/commit/repochecks.py
index 2839864..8019e28 100644
--- a/pym/repoman/modules/commit/repochecks.py
+++ b/pym/repoman/modules/commit/repochecks.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 from portage.output import red
 
 from repoman.errors import err

diff --git a/pym/repoman/profile.py b/pym/repoman/profile.py
index 0aedbe8..3634fb9 100644
--- a/pym/repoman/profile.py
+++ b/pym/repoman/profile.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 from portage import normalize_path
 from portage import os
 from portage.output import red

diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
index 44ff33b..ace878a 100644
--- a/pym/repoman/scanner.py
+++ b/pym/repoman/scanner.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 import copy
 import io
 import logging

diff --git a/pym/repoman/vcs/vcs.py b/pym/repoman/vcs/vcs.py
index 180692c..9b77e8e 100644
--- a/pym/repoman/vcs/vcs.py
+++ b/pym/repoman/vcs/vcs.py
@@ -1,4 +1,6 @@
 
+from __future__ import print_function, unicode_literals
+
 import collections
 import logging
 import re

Reply via email to