Skip to content
This repository has been archived by the owner on Feb 10, 2018. It is now read-only.

suppress FutureWarning #218

Merged
merged 1 commit into from
Oct 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion napalm_junos/junos.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def _process_pipe(cmd, txt):
Process CLI output from Juniper device that
doesn't allow piping the output.
'''
if not txt:
if txt is not None:
return txt
_OF_MAP = OrderedDict()
_OF_MAP['except'] = _except
Expand Down