Skip to content

Commit ae7d39a

Browse files
authored
Merge pull request #3243 from minrk/less-shouty
make js-generated UUIDs lowercase
2 parents f38acee + 44c9914 commit ae7d39a

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)