Skip to content

Commit

Permalink
Fix minor ID export bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Feb 26, 2019
1 parent e18651c commit 15ac057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabular/Edit scripts/ExportTabularIDs.pas
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function Initialize: integer;
function Process(e: IInterface): integer;
begin
outputLines.Add(
EscapeCsvString(StringFormID(e)) + ', ' +
EscapeCsvString(Signature(e)) + ', ' +
EscapeCsvString(StringFormID(e)) + ', ' +
EscapeCsvString(evBySignature(e, 'EDID')) + ', ' +
EscapeCsvString(evBySignature(e, 'FULL'))
Expand Down

0 comments on commit 15ac057

Please sign in to comment.