~aaron-whitehouse/duplicity/08-unadorned-strings

« back to all changes in this revision

Viewing changes to duplicity/backends/dpbxbackend.py

  • Committer: Kenneth Loafman
  • Date: 2017-11-28 14:16:54 UTC
  • Revision ID: kenneth@loafman.com-20171128141654-v1z6b010wlkq4uw9
* Fix PEP8 issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
                    break
395
395
                resp = self.api_client.files_list_folder_continue(resp.cursor)
396
396
        except ApiError as e:
397
 
            if (isinstance(e.error, ListFolderError) and e.error.is_path()
398
 
                and e.error.get_path().is_not_found()):
 
397
            if (isinstance(e.error, ListFolderError) and e.error.is_path() and
 
398
                    e.error.get_path().is_not_found()):
399
399
                log.Debug('dpbx.list(%s): ignore missing folder (%s)' % (remote_dir, e))
400
400
            else:
401
401
                raise