Skip to content

Commit

Permalink
fix: remove py shebang which cause errors with py venv
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-freeman committed Nov 9, 2024
1 parent fe49e80 commit f1fe7e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/maintenance_planner_files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# SAP Maintenance Planner files retrieval

Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/maintenance_planner_stack_xml_download.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# SAP Maintenance Planner Stack XML download

Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/software_center_download.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# SAP software download module

Expand Down

1 comment on commit f1fe7e8

@marcelmamula
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tested on SLES 15 SP6 where it was needed in order ignore Python 3.6 and use Python 3.11

Please sign in to comment.