Skip to content

Commit

Permalink
#4213 use a consistent shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 3, 2024
1 parent 9ad9915 commit 73f9327
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion fs/bin/run_scaled
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

# pylint: disable=import-outside-toplevel

Expand Down
2 changes: 1 addition & 1 deletion fs/bin/xpra
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import sys

Expand Down
2 changes: 1 addition & 1 deletion fs/bin/xpra_launcher
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion fs/lib/cups/backend/xpraforwarder
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# xpraforwarder - A CUPS backend written in Python.
Expand Down
2 changes: 1 addition & 1 deletion fs/libexec/xpra/auth_dialog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import sys

Expand Down
2 changes: 1 addition & 1 deletion fs/libexec/xpra/xdg-open
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# This file is part of Xpra.
# Copyright (C) 2017-2020 Antoine Martin <antoine@xpra.org>
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
Expand Down
2 changes: 1 addition & 1 deletion fs/libexec/xpra/xpra_signal_listener
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3

import os
import sys
Expand Down

0 comments on commit 73f9327

Please sign in to comment.