diff options
| author | Michael Biebl <biebl@debian.org> | 2022-12-18 21:31:39 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-12-18 21:31:39 +0100 |
| commit | 2965dc70bb3cbfa8de2f279761812b84b87600cb (patch) | |
| tree | 90d4a861f7cd7a05834e7328af7677e7c8acd17f /examples/python/gi/checkpoint.py | |
| parent | 6e9d10e114f94799d54bb3dabc66e35ab4e3e8cd (diff) | |
New upstream version 1.40.8 upstream/1.40.8
Diffstat (limited to 'examples/python/gi/checkpoint.py')
| -rwxr-xr-x | examples/python/gi/checkpoint.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/python/gi/checkpoint.py b/examples/python/gi/checkpoint.py index 6f3194cd..6e94b07c 100755 --- a/examples/python/gi/checkpoint.py +++ b/examples/python/gi/checkpoint.py @@ -80,10 +80,10 @@ def find_checkpoint_last(nmc): def validate_path(path, nmc): if path == "--last": - path = find_checkpoint_last(nmc) - if path is None: + c = find_checkpoint_last(nmc) + if c is None: sys.exit("Has no checkpoint") - return path + return c.get_path() try: num = int(path) |