aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlice Ferrazzi <alicef@gentoo.org>2017-07-03 11:33:17 +0900
committerAlice Ferrazzi <alicef@gentoo.org>2017-07-03 11:33:17 +0900
commitcbca03574810307835a6fd6ba3579426b91ef751 (patch)
tree925db51456759a1a3cc33797dfac6c7423652e0a /elivepatch_client/client/cli.py
parentAdded version and copyright to init file (diff)
downloadelivepatch-cbca03574810307835a6fd6ba3579426b91ef751.tar.gz
elivepatch-cbca03574810307835a6fd6ba3579426b91ef751.tar.bz2
elivepatch-cbca03574810307835a6fd6ba3579426b91ef751.zip
receiving and sending the userid and resending same userid if already
present in shelves import optimized
Diffstat (limited to 'elivepatch_client/client/cli.py')
-rw-r--r--elivepatch_client/client/cli.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/elivepatch_client/client/cli.py b/elivepatch_client/client/cli.py
index 90fbb8e..556b122 100644
--- a/elivepatch_client/client/cli.py
+++ b/elivepatch_client/client/cli.py
@@ -4,13 +4,12 @@
# (c) 2017, Alice Ferrazzi <alice.ferrazzi@gmail.com>
# Distributed under the terms of the GNU General Public License v2 or later
-import os, sys
-from elivepatch_client.client.checkers import CVE
+import sys
+
from elivepatch_client.client.checkers import Kernel
from elivepatch_client.client.restful import ManaGer
from elivepatch_client.client.version import VERSION
-
if sys.hexversion >= 0x30200f0:
ALL_KEYWORD = b'ALL'
else:
@@ -18,7 +17,8 @@ else:
class Main(object):
- """Performs the actions the user selected.
+ """
+ Performs the actions selected by the user
"""
def __init__(self, argparser):