Commit b39cc3c8 authored by Kirsten Bauck's avatar Kirsten Bauck
Browse files

convert to string

parent 99b9220e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2225,7 +2225,7 @@ class NetworkCandidateGraph(CandidateGraph):
            flistpath = os.path.splitext(path)[0] + '.lis'
        target = self.config['spatial'].get('target', None)

        fpaths = [path for path in self.nodes]
        fpaths = [str(path) for path in self.nodes]
        for f in self.files:
            if f not in fpaths:
                log.warning(f'{f} in candidate graph but not in output network.')