Removed userpython variable.

这个提交包含在:
Craig Warren
2016-05-06 16:30:27 +01:00
父节点 e9a1a510d2
当前提交 3defad8557

查看文件

@@ -32,7 +32,9 @@ def process_python_include_code(inputfile, usernamespace):
Returns:
processedlines (list): Input commands after Python processing.
"""
userpython = False
with open(inputfile, 'r') as f:
# Strip out any newline characters and comments that must begin with double hashes
inputlines = [line.rstrip() for line in f if(not line.startswith('##') and line.rstrip('\n'))]