Skip to content

Commit

Permalink
Remove first line indent
Browse files Browse the repository at this point in the history
  • Loading branch information
psss committed Jan 28, 2025
1 parent d0a1cb7 commit 15d2bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmt/steps/provision/mrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ def _create(self, tmt_name: str) -> None:
# Mrack indents XML with tabs, tmt indents with spaces, let's make sure we
# don't mix these two in tmt output & modify mrack's output to use spaces as well.
self.print(re.sub(r'^\t+', lambda match: ' ' * len(match.group()),
job.toxml(prettyxml=True), flags=re.MULTILINE))
job.toxml(prettyxml=True), flags=re.MULTILINE), shift=-2)
return
try:
response = self.api.create(data)
Expand Down

0 comments on commit 15d2bbb

Please sign in to comment.