File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " textual-dev"
3
- version = " 1.5.0 "
3
+ version = " 1.5.1 "
4
4
homepage = " https://github.com/Textualize/textual-dev"
5
5
description = " Development tools for working with Textual"
6
6
authors = [
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ def _run_app(
158
158
port : int | None ,
159
159
press : str | None ,
160
160
screenshot : int | None ,
161
- screenshot_location : pathlib .Path | None ,
161
+ screenshot_path : pathlib .Path | None ,
162
162
screenshot_filename : pathlib .Path | None ,
163
163
extra_args : tuple [str ],
164
164
command : bool = False ,
@@ -210,8 +210,8 @@ def _run_app(
210
210
environment ["TEXTUAL_PRESS" ] = str (press )
211
211
if screenshot is not None :
212
212
environment ["TEXTUAL_SCREENSHOT" ] = str (screenshot )
213
- if screenshot_location is not None :
214
- environment ["TEXTUAL_SCREENSHOT_LOCATION" ] = str (screenshot_location )
213
+ if screenshot_path is not None :
214
+ environment ["TEXTUAL_SCREENSHOT_LOCATION" ] = str (screenshot_path )
215
215
if screenshot_filename is not None :
216
216
environment ["TEXTUAL_SCREENSHOT_FILENAME" ] = str (screenshot_filename )
217
217
if show_return :
You can’t perform that action at this time.
0 commit comments