Skip to content

Commit

Permalink
Fix banner DBGFLAG problem per Github Issue #5
Browse files Browse the repository at this point in the history
--HG--
branch : ciscoconfparse
  • Loading branch information
mpenning committed Apr 16, 2014
1 parent 1d64fae commit 5040934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ciscoconfparse/ciscoconfparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"""

## Docstring props: http://stackoverflow.com/a/1523456/667301
__version_tuple__ = (0,9,30)
__version_tuple__ = (0,9,31)
__version__ = '.'.join(map(str, __version_tuple__))
__email__ = "mike /at\ pennington [dot] net"
__author__ = "David Michael Pennington <{0}>".format(__email__)
Expand Down Expand Up @@ -1544,7 +1544,7 @@ def _mark_banner(self, banner_str, os):


## Debugging only...
if (DBGFLAG is True):
if (self.DBGFLAG is True):
print("[DEBUG] _mark_banner: found endpoint - line %s, text %s" % (kk - 1, self.ioscfg[kk - 1]))
#
# Set oldest_ancestor on the parent
Expand Down

0 comments on commit 5040934

Please sign in to comment.