Skip to content

Commit ac32feb

Browse files
dduttclaudious96
authored andcommitted
GUI Path: fix bug with unhandled path
Signed-off-by: Dinesh Dutt <[email protected]>
1 parent 568cee1 commit ac32feb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

suzieq/gui/stlit/path.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,14 @@ def _get_path(self, forward_dir: bool = True) -> Tuple[pd.DataFrame,
259259
vrf=self._state.vrf)
260260

261261
summ_df = self._path_summarize(df)
262+
else:
263+
df = self._pathobj.get(namespace=[self._state.namespace],
264+
src=self._state.dest,
265+
dest=self._state.source,
266+
vrf=self._state.vrf)
267+
268+
summ_df = self._path_summarize(df)
269+
262270
return df, summ_df
263271

264272
def _get_failed_data(self, namespace: str, pgbar) -> None:

0 commit comments

Comments
 (0)