Unify qutebrowser.py and qutebrowser/__main__.py
This commit is contained in:
parent
d741bdf2f9
commit
d2f040c477
|
|
@ -21,9 +21,10 @@
|
|||
|
||||
"""Simple launcher for qutebrowser."""
|
||||
|
||||
import qutebrowser.qutebrowser
|
||||
import sys
|
||||
|
||||
import qutebrowser.qutebrowser
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(qutebrowser.qutebrowser.main())
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue