From 4da83bfb790e16a33ca466d723297065bf8ba799 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 22 Oct 2016 16:36:24 +0200 Subject: [PATCH] Remove vdirsyncer repl hack --- vdirsyncer/cli/__init__.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/vdirsyncer/cli/__init__.py b/vdirsyncer/cli/__init__.py index 0317e73..441f551 100644 --- a/vdirsyncer/cli/__init__.py +++ b/vdirsyncer/cli/__init__.py @@ -227,16 +227,3 @@ def repair(ctx, collection): 'synchronization features.') click.confirm('Do you want to continue?', abort=True) repair_collection(ctx.config, collection) - -# Not sure if useful. I originally wanted it because: -# * my password manager has a timeout for caching the master password -# * when calling vdirsyncer in a cronjob, the master password prompt would -# randomly pop up -# So I planned on piping a FIFO to vdirsyncer, and writing to that FIFO from a -# cronjob. - -try: - import click_repl - click_repl.register_repl(app) -except ImportError: - pass