summaryrefslogtreecommitdiff
path: root/alot/commands
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2018-06-19 22:00:35 +0100
committerGitHub <noreply@github.com>2018-06-19 22:00:35 +0100
commitd19615d2ac5bb23aca9068ca8c7644f466ce0b48 (patch)
treec46f606735b678ffea1dc044c3863ab499b89909 /alot/commands
parent802e513801ca9200addf8b2278478858d38f337b (diff)
parent374651d84cb5767629ad4b7d3179b84bae05ab82 (diff)
Merge pull request #1250 from lucc/future
Remove old __future__ imports
Diffstat (limited to 'alot/commands')
-rw-r--r--alot/commands/__init__.py2
-rw-r--r--alot/commands/bufferlist.py2
-rw-r--r--alot/commands/envelope.py2
-rw-r--r--alot/commands/globals.py3
-rw-r--r--alot/commands/search.py2
-rw-r--r--alot/commands/taglist.py2
-rw-r--r--alot/commands/thread.py2
-rw-r--r--alot/commands/utils.py2
8 files changed, 0 insertions, 17 deletions
diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py
index 0887a76a..ddd7ed17 100644
--- a/alot/commands/__init__.py
+++ b/alot/commands/__init__.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
import argparse
import glob
import logging
diff --git a/alot/commands/bufferlist.py b/alot/commands/bufferlist.py
index 1a9bbdeb..73bd12a4 100644
--- a/alot/commands/bufferlist.py
+++ b/alot/commands/bufferlist.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
from ..commands import Command, registerCommand
from . import globals
diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index 0485aa00..cbff2808 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
import argparse
import datetime
import email
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 4e272b8e..906117a6 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -1,9 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-from __future__ import division
-
import argparse
import code
import email
diff --git a/alot/commands/search.py b/alot/commands/search.py
index bf8b9b6b..946749ec 100644
--- a/alot/commands/search.py
+++ b/alot/commands/search.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
import argparse
import logging
diff --git a/alot/commands/taglist.py b/alot/commands/taglist.py
index 5f90519f..1fa01369 100644
--- a/alot/commands/taglist.py
+++ b/alot/commands/taglist.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
from . import Command, registerCommand
from .globals import SearchCommand
diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index bb90a5d8..05f73d6a 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -1,8 +1,6 @@
# Copyright (C) 2011-2012 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
import argparse
import logging
import mailcap
diff --git a/alot/commands/utils.py b/alot/commands/utils.py
index 7a1c0ac1..2e6b64e6 100644
--- a/alot/commands/utils.py
+++ b/alot/commands/utils.py
@@ -1,8 +1,6 @@
# Copyright (C) 2015 Patrick Totzke <patricktotzke@gmail.com>
# This file is released under the GNU GPL, version 3 or a later revision.
# For further details see the COPYING file
-from __future__ import absolute_import
-
import re
import logging