Skip to content

Commit

Permalink
remove warning about escape
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkeane committed Jan 19, 2024
1 parent ec235f0 commit e290a11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 5 additions & 1 deletion developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ file_list = fflipper.app
installation_path = /Applications/
entitlements = ./entitlements.plist
version = 0.1.0
```
```

## Debugging

Can't find tkinter? Try installing `brew install [email protected]`
7 changes: 1 addition & 6 deletions fflipper/fflipper.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,12 +424,7 @@ def doClipping(self):
# process polling only if there is a process to poll
singleAnno["process"].poll()
if singleAnno["process"].returncode is None:
frameReg = re.compile("^frame=\s+(\d+).*")

outPut = singleAnno["process"].stdout.readline()
frames = frameReg.match(outPut)
if frames:
print("frames:", frames.group(1))
continue
elif singleAnno["process"].returncode == 0:
singleAnno["progress"].children["!progressbar"].stop()
singleAnno["progress"].children["!progressbar"]["value"] = 100
Expand Down

0 comments on commit e290a11

Please sign in to comment.