Skip to content

Commit

Permalink
scripts/tracetool: Remove shebang header
Browse files Browse the repository at this point in the history
Patch created mechanically by running:

  $ chmod 644 $(git grep -lF '#!/usr/bin/env python' \
      | xargs grep -L 'if __name__.*__main__')
  $ sed -i "/^#\!\/usr\/bin\/\(env\ \)\?python.\?$/d" \
      $(git grep -lF '#!/usr/bin/env python' \
      | xargs grep -L 'if __name__.*__main__')

Reported-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200130163232.10446-9-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
  • Loading branch information
philmd committed Feb 7, 2020
1 parent b92e7da commit 91aef87
Show file tree
Hide file tree
Showing 23 changed files with 0 additions and 23 deletions.
1 change: 0 additions & 1 deletion scripts/tracetool/__init__.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/__init__.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/dtrace.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/ftrace.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/log.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/simple.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/syslog.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/backend/ust.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/__init__.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/c.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/d.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/h.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/log_stap.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/simpletrace_stap.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/stap.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/tcg_h.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/tcg_helper_c.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/tcg_helper_h.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/tcg_helper_wrapper_h.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/ust_events_c.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/format/ust_events_h.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/transform.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down
1 change: 0 additions & 1 deletion scripts/tracetool/vcpu.py
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Expand Down

0 comments on commit 91aef87

Please sign in to comment.