b14f37942a
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
14 lines
325 B
Python
14 lines
325 B
Python
# Copyright 2013-2016 Eygene A. Ryabinkin & contributors.
|
|
#
|
|
# Module that holds various global objects.
|
|
|
|
from offlineimap.utils import const
|
|
|
|
# Holds command-line options for OfflineIMAP.
|
|
options = const.ConstProxy()
|
|
|
|
def set_options(source):
|
|
""" Sets the source for options variable """
|
|
|
|
options.set_source (source)
|