Commit 1a37c6ee authored by Keegi's avatar Keegi

Fix empty lines in .pronsolerc causing crash

parent 0ff83c64
...@@ -132,7 +132,7 @@ class pronsole(cmd.Cmd): ...@@ -132,7 +132,7 @@ class pronsole(cmd.Cmd):
try: try:
with open(os.path.join(os.path.expanduser("~"),".pronsolerc")) as rc: with open(os.path.join(os.path.expanduser("~"),".pronsolerc")) as rc:
for rc_cmd in rc: for rc_cmd in rc:
if rc_cmd.lstrip()[0] != "#": if not rc_cmd.lstrip().startswith("#"):
self.onecmd(rc_cmd) self.onecmd(rc_cmd)
except IOError: except IOError:
pass pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment