We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd32872 commit 80c7f28Copy full SHA for 80c7f28
load-units.pl
@@ -122,11 +122,14 @@
122
} while ($n_todo != $new_n_todo);
123
124
print "$new_n_todo units not inserted:\n";
125
+open my $unres, '>', "definitions.unresolved";
126
foreach my $u (@todo) {
127
if ($u->{is_prefix}) {
128
print "Prefix $u->{unit}: $u->{def}\n";
129
} else {
130
+ print $unres "$u->{unit}\t$u->{def}\n";
131
next if ($u->{error} =~ /dollar|euro|pence|quid|shilling/); # skip currencies so we can see the rest better
132
print "$u->{unit}: $u->{def} ($u->{error})\n";
133
}
134
135
+close $unres;
0 commit comments