From 5d5e26eb7b79506cbe713f5843c8e3b0d5042c68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Wi=C3=9Fmann?= Date: Sat, 10 Jan 2015 13:23:56 +1100 Subject: [PATCH] Fix some check_libraries() for arch By now, the python-jinja and python-pygments packages are available in community. --- qutebrowser/misc/earlyinit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py index f22637871..eda1e3fee 100644 --- a/qutebrowser/misc/earlyinit.py +++ b/qutebrowser/misc/earlyinit.py @@ -234,14 +234,14 @@ def check_libraries(): 'jinja2': _missing_str("jinja2", debian="apt-get install python3-jinja2", - arch="Install python-jinja from the AUR", + arch="Install python-jinja from community", windows="Install from http://www.lfd.uci.edu/" "~gohlke/pythonlibs/#jinja2 or via pip.", pip="jinja2"), 'pygments': _missing_str("pygments", debian="apt-get install python3-pygments", - arch="Install python-jinja from the AUR", + arch="Install python-pygments from community", windows="Install from http://www.lfd.uci.edu/" "~gohlke/pythonlibs/#pygments or via pip.", pip="pygments"),