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

Qt str.append modifies the original string #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

totalspectrum
Copy link

This caused extensions to be added twice in some cases. Instead of "outfile = basefile.append(pattern_out)" (which modifies the original basefile), use "outfile = basefile; outfile += pattern_out".

@avsa242
Copy link

avsa242 commented Jun 6, 2018

Hah! I bet this fixes #43 (#43). I tried to fix that one but had a feeling my solution wasn't the right way... Will have to try this when I get home.

@avsa242
Copy link

avsa242 commented Jul 8, 2018

Guess it took me a long time to get home - I finally had a chance to test this for myself, and it fixes #43 for me.

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