We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f32eff commit 056397aCopy full SHA for 056397a
auto_editor/__main__.py
@@ -311,10 +311,10 @@ def main() -> None:
311
312
import av
313
314
- print(f"Python Version: {plat.python_version()}")
315
- print(f"Platform: {plat.system()} {plat.release()} {plat.machine().lower()}")
316
- print(f"PyAV Version: {av.__version__}")
317
- print(f"Auto-Editor Version: {auto_editor.version}")
+ print(f"OS: {plat.system()} {plat.release()} {plat.machine().lower()}")
+ print(f"Python: {plat.python_version()}")
+ print(f"PyAV: {av.__version__}")
+ print(f"Auto-Editor: {auto_editor.version}")
318
return
319
320
if not args.input:
0 commit comments