diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-17 23:01:11 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-30 19:58:52 +0200 |
commit | 8cfc13a0135ec0fc13ca333e5bf6858740e11d8b (patch) | |
tree | f3015962ef0b208bda5d51f7f0cc91e15dd6d400 /examples/demo/demos/printing.py | |
parent | 3a3aa3baf4654bc3a939553a584e65b012293c6f (diff) | |
download | pygobject-3-34.tar.gz |
flake8: fix errors with new flake8 3.8.0pygobject-3-34
Diffstat (limited to 'examples/demo/demos/printing.py')
-rw-r--r-- | examples/demo/demos/printing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/demo/demos/printing.py b/examples/demo/demos/printing.py index 6e68037d..a87bd6fd 100644 --- a/examples/demo/demos/printing.py +++ b/examples/demo/demos/printing.py @@ -92,8 +92,8 @@ class PrintingApp: file_path = print_data['filename'] if not os.path.isfile(file_path): file_path = os.path.join('demos', file_path) - if not os.path.isfile: - raise Exception("file not found: " % (file_path, )) + if not os.path.isfile(file_path): + raise Exception("file not found: %s" % (file_path, )) # in reality you should most likely not read the entire # file into a buffer |