Skip to content

Commit

Permalink
Merge pull request #179 from thenaterhood/dev
Browse files Browse the repository at this point in the history
Next release
  • Loading branch information
thenaterhood authored Nov 15, 2023
2 parents 42a5f68 + 068399f commit 4a0a079
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions specs/gscreenshot.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%define name gscreenshot
%define version 3.4.1
%define unmangled_version 3.4.1
%define version 3.4.2
%define unmangled_version 3.4.2
%define release 1

Summary: A simple screenshot tool
Expand Down
9 changes: 5 additions & 4 deletions src/gscreenshot/selector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ def _get_boundary_interactive(self, params: typing.List[str]
"""
try:
with subprocess.Popen(
params,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
) as selector_process:
params,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
) as selector_process:

try:
stdout, stderr = selector_process.communicate(timeout=60)
Expand Down

0 comments on commit 4a0a079

Please sign in to comment.