Unify qutebrowser.py and qutebrowser/__main__.py

This commit is contained in:
Florian Bruhin 2019-11-15 14:12:59 +01:00
parent d741bdf2f9
commit d2f040c477
2 changed files with 4 additions and 2 deletions

View File

@ -21,9 +21,10 @@
"""Simple launcher for qutebrowser."""
import qutebrowser.qutebrowser
import sys
import qutebrowser.qutebrowser
if __name__ == '__main__':
sys.exit(qutebrowser.qutebrowser.main())

View File

@ -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