From 980d64b4ae03d4cf3e4be86c3133d84c08dc003f Mon Sep 17 00:00:00 2001 From: Michael Murtaugh Date: Fri, 15 Jan 2016 16:28:03 +0100 Subject: [PATCH] added next and previous vars to index --- etherdump/commands/index.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etherdump/commands/index.py b/etherdump/commands/index.py index 0850541..885a4e3 100644 --- a/etherdump/commands/index.py +++ b/etherdump/commands/index.py @@ -80,6 +80,8 @@ def main (args): pg.add_argument("--updateFrequency", default=1, type=int, help="rss: update frequency within the update period (where 2 would mean twice per period); default: 1") pg.add_argument("--generator", default="https://gitlab.com/activearchives/etherdump", help="generator, default: https://gitlab.com/activearchives/etherdump") pg.add_argument("--timestamp", default=None, help="timestamp, default: now (e.g. 2015-12-01 12:30:00)") + pg.add_argument("--next", default=None, help="next link, default: None)") + pg.add_argument("--prev", default=None, help="prev link, default: None") args = p.parse_args(args)