From 6beb3489ffcb38ff62c39ad0f0e5f22dfbd54a2b Mon Sep 17 00:00:00 2001 From: Robin Sonnabend <robin@fsmpi.rwth-aachen.de> Date: Sat, 17 Feb 2018 19:11:17 +0100 Subject: [PATCH] Make PRINTING_PRINTERS a dict in example config --- config.py.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py.example b/config.py.example index 79a2dff..ee78247 100644 --- a/config.py.example +++ b/config.py.example @@ -26,10 +26,10 @@ CELERY_ACCEPT_CONTENT = ["pickle"] # do not change PRINTING_ACTIVE = True PRINTING_SERVER = "printsrv.example.com:631" PRINTING_USER = "protocols" -PRINTING_PRINTERS = [ +PRINTING_PRINTERS = { "example_printer": ["Duplex=DuplexNoTumble", "option2=value"], "other_printer": ["list", "of", "options"] -] +} # etherpad (optional) ETHERPAD_ACTIVE = True -- GitLab