Skip to content

Commit

Permalink
linespit typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bk2zsto committed Apr 4, 2014
1 parent 022eb5d commit 5d2d95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ciscoconfparse/ciscoconfparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __init__(self, config="", comment="!", debug=False, factory=False,
# string - assume a filename... open file, split and parse
f = open(config)
text = f.read()
rgx = re.compile(linespit_rgx)
rgx = re.compile(linesplit_rgx)
self.ConfigObjs = IOSConfigList(rgx.split(text), comment, debug,
factory)
except IOError:
Expand Down

1 comment on commit 5d2d95e

@mpenning
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in 0.9.29

Please sign in to comment.