Tweak python string comparisons
This commit is contained in:
parent
5873b0b032
commit
f13fbafe31
@ -237,7 +237,7 @@ def resolve_path(path):
|
|||||||
line_num = path[ line_start + 1 : column_start]
|
line_num = path[ line_start + 1 : column_start]
|
||||||
if line_num == '':
|
if line_num == '':
|
||||||
line_num = 1
|
line_num = 1
|
||||||
if not(column_start == column_end):
|
if column_start != column_end:
|
||||||
column_num = path[ column_start + 1 : column_end]
|
column_num = path[ column_start + 1 : column_end]
|
||||||
if column_num == '':
|
if column_num == '':
|
||||||
column_num = 0
|
column_num = 0
|
||||||
@ -276,7 +276,7 @@ def resolve_path(path):
|
|||||||
|
|
||||||
|
|
||||||
start = path.find('/')
|
start = path.find('/')
|
||||||
if not(0 == start): # make sure path starts with '/'
|
if start != 0: # make sure path starts with '/'
|
||||||
while 0 == path.find(' '): # eat any spaces at the beginning
|
while 0 == path.find(' '): # eat any spaces at the beginning
|
||||||
path = path[ 1 : ]
|
path = path[ 1 : ]
|
||||||
path = '/' + path
|
path = '/' + path
|
||||||
@ -604,7 +604,7 @@ def get_env(board_name, ver_Marlin):
|
|||||||
else:
|
else:
|
||||||
invalid_board()
|
invalid_board()
|
||||||
|
|
||||||
if build_type == 'traceback' and not(target_env == 'LPC1768_debug_and_upload' or target_env == 'DUE_debug') and Marlin_ver == 2:
|
if build_type == 'traceback' and target_env != 'LPC1768_debug_and_upload' and target_env != 'DUE_debug' and Marlin_ver == 2:
|
||||||
print("ERROR - this board isn't setup for traceback")
|
print("ERROR - this board isn't setup for traceback")
|
||||||
print('board_name: ', board_name)
|
print('board_name: ', board_name)
|
||||||
print('target_env: ', target_env)
|
print('target_env: ', target_env)
|
||||||
@ -707,7 +707,7 @@ def line_print(line_input):
|
|||||||
if r_loc > 0 and r_loc < len(text): # need to split this line
|
if r_loc > 0 and r_loc < len(text): # need to split this line
|
||||||
text = text.split('\r')
|
text = text.split('\r')
|
||||||
for line in text:
|
for line in text:
|
||||||
if line != "":
|
if line != '':
|
||||||
write_to_screen_queue(line + '\n')
|
write_to_screen_queue(line + '\n')
|
||||||
else:
|
else:
|
||||||
write_to_screen_queue(text + '\n')
|
write_to_screen_queue(text + '\n')
|
||||||
@ -1067,10 +1067,10 @@ class output_window(Text):
|
|||||||
countVar = tk.IntVar()
|
countVar = tk.IntVar()
|
||||||
search_position = '1.0'
|
search_position = '1.0'
|
||||||
search_count = 0
|
search_count = 0
|
||||||
while not(search_position == '') and search_count < 100:
|
while search_position != '' and search_count < 100:
|
||||||
search_position = self.search("error", search_position, stopindex="end", count=countVar, nocase=1)
|
search_position = self.search("error", search_position, stopindex="end", count=countVar, nocase=1)
|
||||||
search_count = search_count + 1
|
search_count = search_count + 1
|
||||||
if not(search_position == ''):
|
if search_position != '':
|
||||||
error_found = True
|
error_found = True
|
||||||
end_pos = '{}+{}c'.format(search_position, 5)
|
end_pos = '{}+{}c'.format(search_position, 5)
|
||||||
self.tag_add("error_highlight_inactive", search_position, end_pos)
|
self.tag_add("error_highlight_inactive", search_position, end_pos)
|
||||||
|
@ -70,7 +70,7 @@ else:
|
|||||||
com_CDC = com_last
|
com_CDC = com_last
|
||||||
description_CDC = description_last
|
description_CDC = description_last
|
||||||
|
|
||||||
if com_CDC == '' and not(com_first == ''):
|
if com_CDC == '' and com_first != '':
|
||||||
com_CDC = com_first
|
com_CDC = com_first
|
||||||
description_CDC = description_first
|
description_CDC = description_first
|
||||||
elif com_CDC == '':
|
elif com_CDC == '':
|
||||||
|
Loading…
Reference in New Issue
Block a user