Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the escaping in behave. #1181

Merged
merged 2 commits into from
Nov 25, 2024
Merged

Fix the escaping in behave. #1181

merged 2 commits into from
Nov 25, 2024

Conversation

amjith
Copy link
Member

@amjith amjith commented Nov 25, 2024

Description

Remove Python 3.8 and add Python 3.13

Checklist

  • I've added this contribution to the changelog.md.

@@ -11,7 +11,7 @@ def step_edit_file(context):
context.editor_file_name = os.path.join(context.package_root, "test_file_{0}.sql".format(context.conf["vi"]))
if os.path.exists(context.editor_file_name):
os.remove(context.editor_file_name)
context.cli.sendline("\e {0}".format(os.path.basename(context.editor_file_name)))
context.cli.sendline("\\e {0}".format(os.path.basename(context.editor_file_name)))
Copy link
Contributor

Choose a reason for hiding this comment

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

Or a raw string, right?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes. I could have done raw strings as well.

@amjith amjith merged commit 38b886e into main Nov 25, 2024
5 checks passed
@amjith amjith deleted the update-py-versions branch November 25, 2024 18:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants