mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-02-02 22:51:40 +00:00
fix config.py unit tests - the target parsing was broken (yes, there are even unit tests!)
This commit is contained in:
parent
6be32bdeec
commit
f28a8499dd
2 changed files with 4 additions and 2 deletions
|
@ -493,7 +493,9 @@ class ConfigParser:
|
|||
value_split.reverse()
|
||||
value_split.pop()
|
||||
while ( len( value_split ) != 0 ):
|
||||
value_array.append( value_split.pop() )
|
||||
v = value_split.pop()
|
||||
if ( len(v) > 0 ):
|
||||
value_array.append( v )
|
||||
value_split.pop()
|
||||
except:
|
||||
print( traceback.print_exception( sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2] ) )
|
||||
|
|
Loading…
Reference in a new issue