Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Wed, 07 Oct 2015 08:01:44
Message-Id: 1444205226.31e872a14e53e87a1788dd96cbae1e11683a6487.blueness@gentoo
1 commit: 31e872a14e53e87a1788dd96cbae1e11683a6487
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 7 08:07:06 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 7 08:07:06 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=31e872a1
7
8 lint: remove unused imports.
9
10 grs/Daemon.py | 2 --
11 grs/PivotChroot.py | 3 ---
12 2 files changed, 5 deletions(-)
13
14 diff --git a/grs/Daemon.py b/grs/Daemon.py
15 index 79aaa42..0cefaef 100644
16 --- a/grs/Daemon.py
17 +++ b/grs/Daemon.py
18 @@ -18,9 +18,7 @@
19
20 import atexit
21 import os
22 -import signal
23 import sys
24 -import time
25
26 class Daemon:
27 """ Adopted from Sander Marechal's "A simple unix/linux daemon in Python"
28
29 diff --git a/grs/PivotChroot.py b/grs/PivotChroot.py
30 index 6324b6e..248bbac 100644
31 --- a/grs/PivotChroot.py
32 +++ b/grs/PivotChroot.py
33 @@ -16,13 +16,10 @@
34 # You should have received a copy of the GNU General Public License
35 # along with this program. If not, see <http://www.gnu.org/licenses/>.
36
37 -import glob
38 -import re
39 import os
40 import shutil
41
42 from grs.Constants import CONST
43 -from grs.MountDirectories import MountDirectories
44 from grs.Rotator import Rotator