From 64b308ebeb339c63ac450465df017c031533a087 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 10 Oct 2018 08:03:51 +0200 Subject: [PATCH] Adjust workaround comment --- qutebrowser/utils/standarddir.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qutebrowser/utils/standarddir.py b/qutebrowser/utils/standarddir.py index 95aa4d438..356178404 100644 --- a/qutebrowser/utils/standarddir.py +++ b/qutebrowser/utils/standarddir.py @@ -240,8 +240,7 @@ def _writable_location(typ): # Add the application name to the given path if needed. # This is in order for this to work without a QApplication (and thus - # QStandardsPaths not knowing the application name), as well as a - # workaround for https://bugreports.qt.io/browse/QTBUG-38872 + # QStandardsPaths not knowing the application name). if (typ != QStandardPaths.DownloadLocation and path.split(os.sep)[-1] != APPNAME): path = os.path.join(path, APPNAME)