summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xqutebrowser.py3
-rw-r--r--qutebrowser/__main__.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/qutebrowser.py b/qutebrowser.py
index 392db932c..a842e4f44 100755
--- a/qutebrowser.py
+++ b/qutebrowser.py
@@ -21,9 +21,10 @@
"""Simple launcher for qutebrowser."""
-import qutebrowser.qutebrowser
import sys
+import qutebrowser.qutebrowser
+
if __name__ == '__main__':
sys.exit(qutebrowser.qutebrowser.main())
diff --git a/qutebrowser/__main__.py b/qutebrowser/__main__.py
index 9bbe390e5..a842e4f44 100644
--- a/qutebrowser/__main__.py
+++ b/qutebrowser/__main__.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
+
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
# Copyright 2014-2019 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
@@ -18,7 +19,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
-"""Entry point for qutebrowser. Simply execute qutebrowser."""
+"""Simple launcher for qutebrowser."""
import sys