Skip to content

Commit 44c9914

Browse files
committed
make js-generated UUIDs lowercase
so it's less shouty when debugging messages We don't ever need official UUIDs as specified, just sufficiently random strings.
1 parent 0254c8b commit 44c9914

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/static/base/js/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ define([
208208
* http://www.ietf.org/rfc/rfc4122.txt
209209
*/
210210
var s = [];
211-
var hexDigits = "0123456789ABCDEF";
211+
var hexDigits = "0123456789abcdef";
212212
for (var i = 0; i < 32; i++) {
213213
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
214214
}

0 commit comments

Comments
 (0)