From 7fe4c7e06d49b06a9b7c683c71c1304f6b96de45 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Thu, 24 Mar 2016 01:15:41 +0100 Subject: [PATCH] fix lint --- qutebrowser/browser/network/filescheme.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qutebrowser/browser/network/filescheme.py b/qutebrowser/browser/network/filescheme.py index f8ccf5185..becb67d66 100644 --- a/qutebrowser/browser/network/filescheme.py +++ b/qutebrowser/browser/network/filescheme.py @@ -62,9 +62,9 @@ def is_root(directory): # dirname('/home') = '/' # dirname('/home/') = '/home' # dirname('/home/foo') = '/home' - # basically, for files (no trailing slash) it removes the file part, and for - # directories, it removes the trailing slash, so the only way for this to be - # equal is if the directory is the root directory. + # basically, for files (no trailing slash) it removes the file part, and + # for directories, it removes the trailing slash, so the only way for this + # to be equal is if the directory is the root directory. return os.path.dirname(directory) == directory