forked from hstormer/Python-Mistakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWyes.json
2968 lines (2968 loc) · 137 KB
/
NEWyes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Changes:": [
"-\tfrom . index import create_index_file\n",
"+ from . index import create_index_file\n"
],
"Message:": "fix indentation problem",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/semio/ddf_utils/commit/7587d849672352c40fac76760fa0fc15623f9400",
"Commit Corrections:": "https://github.com/semio/ddf_utils/commit/1d8acdfc0a729197dda3e1d52582f1ac317cc005"
},
{
"Changes:": [
"- elif type(testcases_to_be_executed) is \"Type\" and issubclass(testcases_to_be_executed, (FrontendTestCase, BackendTestCase)):\n",
"+ elif type(testcases_to_be_executed) is type and issubclass(testcases_to_be_executed, (FrontendTestCase, BackendTestCase)):\n"
],
"Message:": "update main.py\nif type(xxx) is type instead of if type(xxx) is 'type'",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/wanglin1985/Steed/commit/a390e2ecdf5e63f3e9d53ef13d91c9ece3b8c843",
"Commit Corrections:": "https://github.com/wanglin1985/Steed/commit/b489d1aba13e8483b43b928d06144176f2fac070"
},
{
"Changes:": [
"- if not os.path.isfile(args.config) && not args.hadoop:\n",
"+ if (not os.path.isfile(args.config)) and (not args.hadoop):\n"
],
"Message:": "bug fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/sfu-natlang/glm-parser/commit/75186444cf04793d00b312dff76254b2b129370e",
"Commit Corrections:": "https://github.com/sfu-natlang/glm-parser/commit/6a123cb374b2150ebd865481c9bbddcc340c9fca"
},
{
"Changes:": [
"-epoch = datetime.datetime.fromtimestamp(0)\r\n",
"-checkTime = int((midnight - epoch).total_seconds())\r\n",
"+checkTime = int(time.mktime(midnight.timetuple()))\r\n",
"-del epoch\r\n"
],
"Message:": "corrected seconds since epoch bug",
"Additions:": 1,
"Deletions:": 3,
"Commit Mistakes:": "https://github.com/eshapard/AnkiHabitica/commit/8a5fe4ec1bf05681758466a0e0f606a1403abe7c",
"Commit Corrections:": "https://github.com/eshapard/AnkiHabitica/commit/cb20596498ce3f541d2e51edff033d3a9d4eba2d"
},
{
"Changes:": [
"-if (s == s2):\n",
"+if (s == s):\n"
],
"Message:": "pass into",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jeremywrnr/pt-evaluation/commit/7496ce5874bcb7248438d0332ad2d1dc98434a6f",
"Commit Corrections:": "https://github.com/jeremywrnr/pt-evaluation/commit/3662b8dbb5d646e60d0afad7fbd7317be1dd6a6a"
},
{
"Changes:": [
"- return celery.schedulers.schedstate(is_due=False, next=due[1])\n",
"+ return celery.schedules.schedstate(is_due=False, next=due[1])\n"
],
"Message:": "fix celery.schedulers -> celery.schedules",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/asmodehn/celerybeatredis/commit/214291a0ed982661700e2da6178bbe665af536e1",
"Commit Corrections:": "https://github.com/asmodehn/celerybeatredis/commit/8b17282434a29a6424c3c2cb855f7e679b1d9985"
},
{
"Changes:": [
"- 'default=bigchaindb.consensus:BaseConsensusRules'\n",
"+ 'default=bigchaindb.consensus:BaseConsensusRules',\n"
],
"Message:": "fix setup.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/guozhongxin/bigchaindb/commit/59003f998fc367690ea1ed146fdefb353ec30ce7",
"Commit Corrections:": "https://github.com/guozhongxin/bigchaindb/commit/eab43e4b1feab84d54af56211864f2bc80d0546c"
},
{
"Changes:": [
"- data[\"content\"][\"text\"] = received_txt\n",
"+ data[\"content\"][\"text\"] = received_text\n"
],
"Message:": "typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/hokuto-k/django-line-bot/commit/3e90e4e53282c27743b9079561d47e9ba6a05c91",
"Commit Corrections:": "https://github.com/hokuto-k/django-line-bot/commit/7ab3fcfb53fcee1db9e11553cd4e60748a068966"
},
{
"Changes:": [
"-\t\t\tif alpha in flipped_exlus::\n",
"+\t\t\tif alpha in flipped_exlus:\n"
],
"Message:": "update",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/virpatel524/miRNA-Scripts/commit/7484135e8322d9961e7815bf5e1b8f174ca35384",
"Commit Corrections:": "https://github.com/virpatel524/miRNA-Scripts/commit/39df4a14f8e607be503b14964e70041dfa9db752"
},
{
"Changes:": [
"-\t\t\t\tif beta in flipped_exlus[alpha]\n",
"+\t\t\t\tif beta in flipped_exlus[alpha]:\n"
],
"Message:": "update",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/virpatel524/miRNA-Scripts/commit/39df4a14f8e607be503b14964e70041dfa9db752",
"Commit Corrections:": "https://github.com/virpatel524/miRNA-Scripts/commit/49c38a3ca4e283d8f93a790b5ce5bbdc55684670"
},
{
"Changes:": [
"- password = getpass.getpass(prompt='Password: ' % (args.host,args.user))\n",
"+ password = getpass.getpass(prompt='Password for %s@%s: ' % (args.user,args.host))\n"
],
"Message:": "Fix broken password prompt",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/gbolo/vSummary/commit/0929bf0d5db0e9c1cbd5d3262b5652ec228ed9f0",
"Commit Corrections:": "https://github.com/gbolo/vSummary/commit/1d288dd2a69ce0a18bc5db4083a36936fae33249"
},
{
"Changes:": [
"-\tif raw_input(\"Should I save this for next time? (y/N) > \").lower().startwith('y'):\n",
"+\tif raw_input(\"Should I save this for next time? (y/N) > \").lower().startswith('y'):\n"
],
"Message:": "Fix typo in pip connect",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ekimekim/pipirc/commit/76a5bc83eb00dfff99c4629727ee54d81258f3e7",
"Commit Corrections:": "https://github.com/ekimekim/pipirc/commit/56376857d0d0cd2c7ce472863a979432ef953c38"
},
{
"Changes:": [
"- line_option[i] = TextAttributes(None, None, None)\n",
"+ line_option[i] = TextAttribute(None, None, None)\n"
],
"Message:": "fix wrong class problem",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/stonewell/pymterm/commit/f18b221be99b699337700ca0644ee1cfd63708e4",
"Commit Corrections:": "https://github.com/stonewell/pymterm/commit/800c03d0961f28b1fee95d3d97b19ab13b67ce25"
},
{
"Changes:": [
"- EMAIL_HOST_PASSWROD = os.environ['OPENSHIFT_SMTP_PASSWORD']\n",
"+ EMAIL_HOST_PASSWORD = os.environ['OPENSHIFT_SMTP_PASSWORD']\n"
],
"Message:": "Fix typo that was preventing mail from sending.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alexskc/Fruitydo/commit/c6c1bceda0426510aa3e068884563bf460695b0c",
"Commit Corrections:": "https://github.com/alexskc/Fruitydo/commit/e49980bebdf5eb421b5db20349fa2f25169a00bd"
},
{
"Changes:": [
"-newfile.write('Cremanei\\tClatens\\t\\K_JukesCantor\\n')\n",
"+newfile.write('Cremanei\\tClatens\\tK_JukesCantor\\n')\n",
"-newfile.write('Cremanei\\tClatens\\t\\K_JukesCantor\\n')\n",
"+newfile.write('Cremanei\\tClatens\\tK_JukesCantor\\n')\n"
],
"Message:": "corrected typo",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/rjovelin/CRM_POPVAR/commit/6cd4477f5d5d5d47fa6454015d9e7b3d0b2dc2c4",
"Commit Corrections:": "https://github.com/rjovelin/CRM_POPVAR/commit/e83a632f47bf526ba4d4cca6d818c4d91b0505bf"
},
{
"Changes:": [
"- messages.success(request, \"Email successfully confirmed. You can log in now.\"\n",
"+ messages.success(request, \"Email successfully confirmed. You can log in now.\")\n"
],
"Message:": "Close parantheses that break the whole site.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alexskc/Fruitydo/commit/d07916652b863d53428d138e88e58c67533aa056",
"Commit Corrections:": "https://github.com/alexskc/Fruitydo/commit/638beb6bdb12ae8fe33f01da1eb70dde4fd65ed0"
},
{
"Changes:": [
"-var reservedWords = \"\\\\b({reserved})\\\\b\"\n",
"+var reservedWords = \"\\\\b({reserved})\\\\b\";\n"
],
"Message:": "bugfix: add missing semi-colon",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jrnold/stan-language-definitions/commit/04b272c0b60023795c22337733888c2c00ef4c52",
"Commit Corrections:": "https://github.com/jrnold/stan-language-definitions/commit/13a2b1a8cc77bd1ddf2c398050a7202deb52a9cd"
},
{
"Changes:": [
"- dpt_v = document_project.find({\"\u7248\u672c\": version},{\"_id\": 0, \"v_list\": 1, \"k_list\": 1}}).skip(skip).limit(limit)\n",
"+ dpt_v = document_project.find({\"\u7248\u672c\": version},{\"_id\": 0, \"v_list\": 1, \"k_list\": 1}).skip(skip).limit(limit)\n"
],
"Message:": "sss",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/xlliu/web_service/commit/4d1c2603782957f42901a4a5291e50069707e85a",
"Commit Corrections:": "https://github.com/xlliu/web_service/commit/ab60f5e294c16a87038295343e6c36223c09fdf8"
},
{
"Changes:": [
"- print(\"Loading weights from %s\" % self.weights_File)\n",
"+ print(\"Loading weights from %s\" % self.weights_file)\n"
],
"Message:": "Fix typo.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/harvitronix/project-becho/commit/8bd94bbf6efdbc7f1cb9fbb0555776d2ef430e84",
"Commit Corrections:": "https://github.com/harvitronix/project-becho/commit/740205637af0aef5af243f62679712aa26377b1c"
},
{
"Changes:": [
"- \tshapes = output_vol_shapes.values()\n",
"+ shapes = output_vol_shapes.values()\n"
],
"Message:": "fox indentation",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/seung-lab/znn-release/commit/992dbbf4974a52675d2691314f19eb6cadb84604",
"Commit Corrections:": "https://github.com/seung-lab/znn-release/commit/cbca3dafa8552bb02402ca1babf5e6faba47e0a6"
},
{
"Changes:": [
"- msg += \"\\nand stop a bot with: \\n\\n\\tbotName:stop.\"\n",
"+ msg += \"\\n\\nand stop a bot with: \\n\\n\\tbotName:stop.\"\n",
"- for name in bot_names:\n",
"+ for name in self.bot_names:\n"
],
"Message:": "bot_names -> self.bot_names",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/DimitrisJim/MessengerBots/commit/55ab3f287b89d27f58a1f8807c2b34d3b34d31d5",
"Commit Corrections:": "https://github.com/DimitrisJim/MessengerBots/commit/f605c984ac135ddc26219b9914a9e453d93fb038"
},
{
"Changes:": [
"- l = len(possible_topics: )\n",
"+ l = len('possible_topics: ')\n"
],
"Message:": "small fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/thuzhf/history_analysis/commit/785d87e4e04317ddee24d691ef85403c8c15180d",
"Commit Corrections:": "https://github.com/thuzhf/history_analysis/commit/34db1e97fd496dc38eb30db05e7078e9db29bf87"
},
{
"Changes:": [
"- response = self.__read()\n",
"+ response = self.__read()\n"
],
"Message:": "fixed indentation error in new baud rate code",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/brendan-w/python-OBD/commit/3e96a65ee534f1bd27542e644ecfd73c0eda96fe",
"Commit Corrections:": "https://github.com/brendan-w/python-OBD/commit/9a2241f6dfc3a31b8cd116859c0f2d3a970fddc5"
},
{
"Changes:": [
"- def generate_unique_veth_endpoints(container_name, ovs_bridge_name):\n",
"+ def generate_unique_veth_endpoints(self, container_name, ovs_bridge_name):\n"
],
"Message:": "misc",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/WatNFV/nsf-discovery/commit/eba6a4127a6cb4e94da290e13410934c8e06fba7",
"Commit Corrections:": "https://github.com/WatNFV/nsf-discovery/commit/569ad662a8fcca819287d714bd2effcbc957abb9"
},
{
"Changes:": [
"- 'hmmsvm_LSLS_w_negative': 1.5\n",
"+ 'hmmsvm_LSLS_w_negative': 1.5,\n"
],
"Message:": "\tmodified: ../params.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/79443cce28dcac5ce3e03ccede75ea96eaaf7cd5",
"Commit Corrections:": "https://github.com/gt-ros-pkg/hrl-assistive/commit/673cde9e1a4e5e14d4ef94d14d7c414651b24e9f"
},
{
"Changes:": [
"-class P_AttrList:\n",
"+class P_AttrList(object):\n"
],
"Message:": "API: new-style classes `P_AttrList` and `Common`",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/erocarrera/pydot/commit/86163b3538dca01e8bcf617932fda373ceb1f203",
"Commit Corrections:": "https://github.com/erocarrera/pydot/commit/c59d6ce4482178ade9a65bf127b53c5dc54ef432"
},
{
"Changes:": [
"- def publish(seld):\n",
"+ def publish(self):\n"
],
"Message:": "Modified templates to display posts from database.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/sjkim0924/my-first-blog/commit/b49ed66739a362e69da6b5fa3a4e5878d0976826",
"Commit Corrections:": "https://github.com/sjkim0924/my-first-blog/commit/c03a19b32a9f29f70bc8b87f0d051c43e37d7cb5"
},
{
"Changes:": [
"- __lt__=_binop_expr('__lt__', _ops.Less)\n",
"+ __lt__=_binop_expr('__lt__', _ops.Less),\n",
"+ identical_to=_binop_expr('identical_to', _ops.IdenticalTo),\n"
],
"Message:": "Add identical_to expression",
"Additions:": 2,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/cpcloud/ibis/commit/0a43a8c5405af3b952dc2b2733720e640f8925fc",
"Commit Corrections:": "https://github.com/cpcloud/ibis/commit/362a5cadc179dd242626013976de5f0bd7bd15d0"
},
{
"Changes:": [
"- toreturn.append(j)\n",
"+ toreturn.append(j)\n"
],
"Message:": "automated commit",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/chaayac/dilaps/commit/78ce007cdcc6d15c897b075dcfabb878d89d71b6",
"Commit Corrections:": "https://github.com/chaayac/dilaps/commit/699637e1c4ae4e756d30ac3fbf685f3f6d0ebe19"
},
{
"Changes:": [
"- url(r'^login/', views.login_user, name='login')\n",
"+ url(r'^login/', views.login_user, name='login'),\n",
"+ url(r'^getjobs/', views.getJobs, name='getJobs')\n"
],
"Message:": "automated commit",
"Additions:": 2,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/chaayac/dilaps/commit/249e8dee8390ce879de4787be8fe9e861cdfec3a",
"Commit Corrections:": "https://github.com/chaayac/dilaps/commit/78ce007cdcc6d15c897b075dcfabb878d89d71b6"
},
{
"Changes:": [
"-ehile True:\n",
"+while True:\n"
],
"Message:": "Corrected the while loop",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/zumbalika/pythonexample/commit/350d1062926c2dbef6e04ff309abd02bd6b864fe",
"Commit Corrections:": "https://github.com/zumbalika/pythonexample/commit/2121829a1a69a852e7cce97941c75c1f4cdc6c8b"
},
{
"Changes:": [
"- pickle.dumps(sorin, f)\n",
"+ pickle.dump(sorin, f)\n"
],
"Message:": "fixed pickle.dump issue in polibot.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dylanpmorgan/polibot/commit/cc38d149c9bcfa27e92ec2c79e012f1974a84107",
"Commit Corrections:": "https://github.com/dylanpmorgan/polibot/commit/38455eae8ed396184db76ca0bebb746cfbceb2a7"
},
{
"Changes:": [
"- return render_template('login.html', state=\"\u672a\u767b\u9646\")\n",
"+ return render_template('login.html', state=\"\u672a\u767b\u9646\")\n"
],
"Message:": "dbb",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/zhenailuoye1/mission/commit/33587b138f5104a5811d64a3ed4c0122b1eb04bb",
"Commit Corrections:": "https://github.com/zhenailuoye1/mission/commit/2ca085c8c319f77bdd69aeeca948a217409774f1"
},
{
"Changes:": [
"- 'Must end by \".tar.gz\", \"tar.bz2\", \"tar.xz\" [*]'),\n",
"+ 'Must end by \".tar.gz\", \"tar.bz2\", \"tar.xz\" [*]')\n"
],
"Message:": "PEP008",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/d9pouces/PolyArchiv/commit/02c0d07e06fc4b71a9647d1c7f77fe02865f2273",
"Commit Corrections:": "https://github.com/d9pouces/PolyArchiv/commit/043c6834350e86b7371b01994ba0bd9e03f962d1"
},
{
"Changes:": [
"- str+=int(round(time.time() * 1000)).__str__()\n",
"+ str+=int(round(time.time())).__str__()\n"
],
"Message:": "a",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/meiavy/python-weixin/commit/a62122af1dd753dfe05d70310cb43ebeab30bf8e",
"Commit Corrections:": "https://github.com/meiavy/python-weixin/commit/614ade2812ab93dd370d3c1e8676ffdbafaabe96"
},
{
"Changes:": [
"- app.register_blueprint(login.bp, url_prefix=\"/api/login/\")\n",
"+ app.register_blueprint(login.bp, url_prefix=\"/api/login\")"
],
"Message:": "bug fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Narcissist1/lunchplace/commit/3e94f9f99b7fea39a63da0983b27f235957b96fc",
"Commit Corrections:": "https://github.com/Narcissist1/lunchplace/commit/2ceec1022c56ba0fcda8e391efc5148e32fbe97c"
},
{
"Changes:": [
"-TURBOSMS_LOGIN = gettattr(settings, 'TURBOSMS_LOGIN', 'foo')\n",
"+TURBOSMS_LOGIN = getattr(settings, 'TURBOSMS_LOGIN', 'foo')\n"
],
"Message:": "Add fix to settings",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/bleedjent/ab_tools/commit/8866f3e50a3e5aecf05ce21418d00877873df8fd",
"Commit Corrections:": "https://github.com/bleedjent/ab_tools/commit/c89c92361d62fba94ed7bae0ff2c128bd97b2aef"
},
{
"Changes:": [
"- coe = wtypes.Enum(str, *fields.BayType.ALL, mondatory=True)\n",
"+ coe = wtypes.Enum(str, *fields.BayType.ALL, mandatory=True)\n"
],
"Message:": "fix an incorrect keyword argument\n\nChange-Id: I9937dc5f739d1135e4376d4dfb251cfe241fa25f",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/larsbutler/magnum/commit/2f8df384858cf9e7e73f500dafa2c3abc94fa6fe",
"Commit Corrections:": "https://github.com/larsbutler/magnum/commit/03069e1f9819d7dc3d9a99dd081da7e624cf30ad"
},
{
"Changes:": [
"- for varName in dir(self) :\n",
"+ for varName in dir(self) :\n"
],
"Message:": "fix indent",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lawrenceleejr/ZeroLeptonAnalysis/commit/9e9592b0e240738a6ded325aba95784840067702",
"Commit Corrections:": "https://github.com/lawrenceleejr/ZeroLeptonAnalysis/commit/44319522e0a11016c68fcfc184e1eadbb8028847"
},
{
"Changes:": [
"-\t\tUserdetail.object.create(name=_name,email=_email)\n",
"+\t\tUserdetail.objects.create(name=_name,email_id=_email)\n"
],
"Message:": "database fixed",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/farazfaraz/my-first-blog/commit/da9b9dabd432c9f0283ef448fad06a145f96149c",
"Commit Corrections:": "https://github.com/farazfaraz/my-first-blog/commit/91729f85fbf030b44af96997562675395e54c61e"
},
{
"Changes:": [
"- def test_ConfigGuest_parese_cpu(self):\n",
"+ def test_ConfigGuest_parse_cpu(self):\n"
],
"Message:": "UT: cleanup typo in libvirt test_config\n\ns/parese/parse\n\nChange-Id: I3a5c9a2f8677df1a1f943326922026010bcc6df2",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/openstack/nova/commit/a074c661e4a336f84e1b2cd7dbd77a69b50c449b",
"Commit Corrections:": "https://github.com/openstack/nova/commit/c880a7ec8d37fcbaf3f2b780c7f5ee167b7e4925"
},
{
"Changes:": [
"-from cfme.web_ui import CheckboxTable, oolbar as tb\n",
"+from cfme.web_ui import CheckboxTable, toolbar as tb\n"
],
"Message:": "Fixup a typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mfalesni/cfme_tests/commit/d5a570bbf32eb4f0996c8a982bd7f2f5e7b3d6bc",
"Commit Corrections:": "https://github.com/mfalesni/cfme_tests/commit/739e2fd9ced71114670478a7de74bc4277bd1d11"
},
{
"Changes:": [
"- self.position = (100, 100) if position not in kwargs else kwargs['position']\n",
"+ self.position = (100, 100) if 'position' not in kwargs else kwargs['position']\n"
],
"Message:": "fixed hardcore bug",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/keksnicoh/opengl_plot_prototype/commit/f2a32eb89a5bf92da5d314485ed688c3e1c91676",
"Commit Corrections:": "https://github.com/keksnicoh/opengl_plot_prototype/commit/46ecaab71f56d54a5a224bb4211efdc73052580e"
},
{
"Changes:": [
"- print('File \\'%s\\' downloads finish')\n",
"+ print('File \\'%s\\' downloads finish' % file_name)\n"
],
"Message:": "\u4fee\u590d\u4e0b\u8f7d\u5b8c\u6210\u65f6\u663e\u793a\u5b57\u7b26\u4e32\u7684\u9519\u8bef",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Arstead/KeNet/commit/f6c44fd641b68b5248d3dc0d14729c1700dbdada",
"Commit Corrections:": "https://github.com/Arstead/KeNet/commit/65df0dab22090c26265def42d9f273b7c6bcf8cb"
},
{
"Changes:": [
"- if isnstance(value, numpy.ndarray):\n",
"+ if isinstance(value, numpy.ndarray):\n"
],
"Message:": "Merge branch 'master' into cdmsNCSTRING",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/UV-CDAT/uvcdat/commit/8a02e8a72fdc98bf6d8f908348ca19f2af05487c",
"Commit Corrections:": "https://github.com/UV-CDAT/uvcdat/commit/bbe10d72730e430f37e6cae2be84f64cbf90d47d"
},
{
"Changes:": [
"- retlist.append = [li.korsecnnm.string, li.shotnisin.string]\n",
"+ retlist.append([li.korsecnnm.string, li.shotnisin.string])\n"
],
"Message:": "Update findcode_v1.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/hyunsikhwang/python/commit/ad9e5e6c9fb0c49ab834a4d614f760a19706fd6d",
"Commit Corrections:": "https://github.com/hyunsikhwang/python/commit/1ca3ee1b9b3d0c30b288366c1aeed24e918d0e84"
},
{
"Changes:": [
"- branch = 'dev/vray_for_blender/%s' & args.teamcity_project_type\n",
"+ branch = 'dev/vray_for_blender/%s' % args.teamcity_project_type\n"
],
"Message:": "fix: typo in tc script",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/bdancer/vb25-patch/commit/0c2c65b17df83b3b667da89ffee8ce2f0812dba0",
"Commit Corrections:": "https://github.com/bdancer/vb25-patch/commit/cfee6d16dbd889a48f31edbb1c834c72cc447417"
},
{
"Changes:": [
"- hold_expiration_date = fields.DateTime(required=True)\n",
"+ hold_expiration_date = fields.Datetime(required=True)\n"
],
"Message:": "FIX datetime field",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/CompassionCH/compassion-modules/commit/c4e1ccec12abc180c22a7f07b89df7efec10bc5f",
"Commit Corrections:": "https://github.com/CompassionCH/compassion-modules/commit/43b78faf6dd18ecf9cf192ad0c151bcda678d159"
},
{
"Changes:": [
"-import cards, games, settingss\n",
"+import cards, games, settings\n"
],
"Message:": "Misprint in import modul and error in ask_number function were improved",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dandel10n/blackjack/commit/f8a7cdfc40a7aabade3df362f1702f8c79fb8677",
"Commit Corrections:": "https://github.com/dandel10n/blackjack/commit/0c18f98bab0470badf617df708cfe847e12e5e69"
},
{
"Changes:": [
"-class InterventionsViewTestCast(TestCase):\n",
"+class InterventionsViewTestCase(TestCase):\n"
],
"Message:": "Further refactoring of inner parsing functions.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/nr-nd/om/commit/6ba32edfbcf0ad1cbf7ebe3e219e36e0467d078c",
"Commit Corrections:": "https://github.com/nr-nd/om/commit/26ca9b39238fe30a70105506255e488321648085"
},
{
"Changes:": [
"-\tif host_os == MAC\n",
"+\tif host_os == MAC:\n"
],
"Message:": "fix: typo in utils build script",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/bdancer/vb25-patch/commit/eedc9e3ecc4e8743cd4f3105ff111ec42057bb9c",
"Commit Corrections:": "https://github.com/bdancer/vb25-patch/commit/540fcc0f970c4c333546b85f03ed9c7de54eb798"
},
{
"Changes:": [
"- with open(args.mmapfile,'r') as f:\n",
"+ with open(args.pmapfile,'r') as f:\n",
"- buildFile(args.infile, args.outfile, newFileStruct, sysEntries)\n",
"+ buildFile(args.infile, args.outfile, newFileStruct, sysEntries)"
],
"Message:": "bugfix (typo)",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/tribalchicken/raw2padded/commit/baa2cd2c3cd123315bfe3444e2b78a203b664fab",
"Commit Corrections:": "https://github.com/tribalchicken/raw2padded/commit/f198bd6036c9807befdd9942274c5a18f4c82f94"
},
{
"Changes:": [
"- def test_by_lines_work_on_article_page\n",
"+ def test_by_lines_work_on_article_page(self):\n",
"+ pass\n"
],
"Message:": "Fixing syntax error in test",
"Additions:": 2,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/newamericafoundation/newamerica-cms/commit/69ea0970a3c6ffdfc27a1ba0e966fa05c34e1233",
"Commit Corrections:": "https://github.com/newamericafoundation/newamerica-cms/commit/b8130edadc2fc3ab7e78709dd27971f8f474c0e7"
},
{
"Changes:": [
"- % (p_id, str(e)))\n",
"+ % (pid, str(e)))\n"
],
"Message:": "Fixing merge conflicts",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/josenavas/QiiTa/commit/04ede6cb2ef3423a49947af948e8cc88f8674707",
"Commit Corrections:": "https://github.com/josenavas/QiiTa/commit/7df405dba9289a31cc81fa268a415afa5c2b6e34"
},
{
"Changes:": [
"- error['filename'], error['line']))\n",
"+ error['filename'], error['line'])\n"
],
"Message:": "fixing typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/tommorris/bastardhooks/commit/4fea275ebe4603cc07523e289d4b6e5eb30c4edf",
"Commit Corrections:": "https://github.com/tommorris/bastardhooks/commit/2dfa915df46f25a318d0c86fcbc5534a093bd692"
},
{
"Changes:": [
"- names = list(utils.force_list(value.get('a'))) or []\n",
"+ names = list(utils.force_list(value.get('a')) or [])\n"
],
"Message:": "Merge pull request #1275 from jacquerie/integrate-pr-1264\n\ndojson: fix two bugs",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/inspirehep/inspire-next/commit/24d0d81b17733ee5407b529ecea1623cef6a77fd",
"Commit Corrections:": "https://github.com/inspirehep/inspire-next/commit/a9967f2584005bf3501c3e71914216437a9546d4"
},
{
"Changes:": [
"- names = list(utils.force_list(value.get('a'))) or []\n",
"+ names = list(utils.force_list(value.get('a')) or [])\n"
],
"Message:": "dojson: fix bug in institutions\n\nSigned-off-by: Tomasz Gargas <[email protected]>",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/inspirehep/inspire-next/commit/b5ab2e57eadb262cdc4c376211c68719cdafb1a5",
"Commit Corrections:": "https://github.com/inspirehep/inspire-next/commit/921adc6547a619bbc75183e8b85231a75d305501"
},
{
"Changes:": [
"- self.fetchsregister_active(thread, register)\n",
"+ self.fetch_register_active(thread, register)\n"
],
"Message:": "arch: fix typo\n\nfetchsregister_active -> fetch_register_active\n\nSigned-off-by: Jeff Mahoney <[email protected]>",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/jeffmahoney/crash-python/commit/4add5cd941cb609fa04a0fe2ecd9180b22102bed",
"Commit Corrections:": "https://github.com/jeffmahoney/crash-python/commit/67d8e30eff0f52f6c5df641713c95c55f58327e0"
},
{
"Changes:": [
"- counter_obj_creator.comments_by_files[str(counter_obj.user_id)] -= 1 \n",
"+ counter_obj_creator.comments_by_files[str(counter_obj.user_id)] -= 1\n",
"+ counter_obj.last_update = datetime.today()\n",
"+ counter_obj_creator.last_update = datetime.today()\n",
"+ counter_obj.save()\n",
"+ counter_obj_creator.save() \n",
"- if benchmark_node.name == 'discussion_delete_reply' :\n",
"+ if benchmark_node.name == 'discussion_delete_reply' :\n",
"- counter_obj.last_update = datetime.today()\n",
"- counter_obj_creator.last_update = datetime.today()\n",
"- counter_obj.save()\n",
"- counter_obj_creator.save()\n",
"+ counter_obj.last_update = datetime.today()\n",
"+ counter_obj_creator.last_update = datetime.today()\n",
"+ counter_obj.save()\n",
"+ counter_obj_creator.save()\n"
],
"Message:": "comments on own files and notes corrected",
"Additions:": 10,
"Deletions:": 6,
"Commit Mistakes:": "https://github.com/KQuadros/gstudio/commit/6bea79e0d189055f7f96f3b96972dd615f4a9571",
"Commit Corrections:": "https://github.com/KQuadros/gstudio/commit/a4cfc74c3d9e4913a886101f2eb4efafbd5e3fd1"
},
{
"Changes:": [
"- skip_authorization_completely = False\n",
"- return self.oauth2_data.get('scope', self.oauth2_data.get('scopes', []))\n",
"+ return self.oauth2_data.get('scope', self.oauth2_data.get('scopes', []))\n",
"-\n",
"- application = get_application_model().objects.get(client_id=self.request.GET['client_id'])\n",
"- allowed_scopes = None\n",
"- if application.allowed_scopes:\n",
"- # this will be [''], which evaluates to True if allowed_scopes is the empty string (but not None)\n",
"- allowed_scopes = application.allowed_scopes.split(' ')\n",
"- if allowed_scopes:\n",
"- requested_scopes = self.getscopes()\n",
"- # now reduce down to allowed scopes\n",
"- scopes = list(set(allowed_scopes) & set(requested_scopes))\n",
"- else:\n",
"- scopes = self.getscopes()\n",
"+ scopes = self.getscopes()\n",
"-\n",
"- scopes = form.cleaned_data.get('scope')\n",
"+ application = get_application_model().objects.get(client_id=credentials['client_id'])\n",
"+ allowed_scopes = None\n",
"+ if application.allowed_scopes:\n",
"+ # this will be [''], which evaluates to True if allowed_scopes is the empty string (but not None)\n",
"+ allowed_scopes = application.allowed_scopes.split(' ')\n",
"+ if allowed_scopes:\n",
"+ requested_scopes = self.getscopes()\n",
"+ # now reduce down to allowed scopes\n",
"+ scopes = list(set(allowed_scopes) & set(requested_scopes))\n",
"+ else:\n",
"+ scopes = form.cleaned_data.get('scope')\n"
],
"Message:": "no use in trying to do this in initial, make sure the cleaned up form has the correct sopes in it!",
"Additions:": 13,
"Deletions:": 16,
"Commit Mistakes:": "https://github.com/JensTimmerman/django-oauth-toolkit/commit/a218b8c2f1dafbc9f47ffa7bf3a3c8528b183312",
"Commit Corrections:": "https://github.com/JensTimmerman/django-oauth-toolkit/commit/76ba31d6877f04fbd9a9d6eb6e28d15c7ed537e3"
},
{
"Changes:": [
"- if site_name > 0:\n",
"+ if len(site_name) > 0:\n"
],
"Message:": "debugging",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lydia-rodriguez/mail-server/commit/e81172c0d40e70b2554348dc3f96ebaa4c9581ef",
"Commit Corrections:": "https://github.com/lydia-rodriguez/mail-server/commit/f00bfc5b18d95883472911731b6faece534fc7e0"
},
{
"Changes:": [
"- else\n",
"+ else:\n"
],
"Message:": "Fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alvarollmenezes/taiga-back/commit/7f95450f2cd3d9e3cfb04698e22bec4b698d3c86",
"Commit Corrections:": "https://github.com/alvarollmenezes/taiga-back/commit/4d5081e254e1226736df7340c27084133d131204"
},
{
"Changes:": [
"- if self.payload.get('action', None) != \"created\" AND self.payload.get('action', None) != \"edited\":\n",
"+ if self.payload.get('action', None) != \"created\" and self.payload.get('action', None) != \"edited\":\n"
],
"Message:": "Fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alvarollmenezes/taiga-back/commit/4d5081e254e1226736df7340c27084133d131204",
"Commit Corrections:": "https://github.com/alvarollmenezes/taiga-back/commit/d20270137a22a001af7980a31afdb00ef07d6395"
},
{
"Changes:": [
"- if self.location.name == 'start':\n",
"+ if self.location.name == 'Start':\n",
"- print('Your score is {}.'.format(self.score)\n",
"+ print('Your score is {}.'.format(self.score))\n"
],
"Message:": "fix stupid bug",
"Additions:": 2,
"Deletions:": 2,
"Commit Mistakes:": "https://github.com/disorientedperson/python-adventure-game/commit/68d75fda034b8b3372c6b304adffdd5ffe8807d2",
"Commit Corrections:": "https://github.com/disorientedperson/python-adventure-game/commit/ab7901055bf721c3590f5656e02cbb2c09496287"
},
{
"Changes:": [
"-\t\tif(interpolation_method = 1): temp.set_attr_dict({'ctf_applied':0, 'npad':1})\n",
"+\t\tif(interpolation_method == 1): temp.set_attr_dict({'ctf_applied':0, 'npad':1})\n"
],
"Message:": "new way of doing tril padded",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/cryoem/eman2/commit/73a150b0fc92339febd032d5bc13d1f58a70cdec",
"Commit Corrections:": "https://github.com/cryoem/eman2/commit/05318e70a5a75a4bab5809e8f279b40fc7f65e20"
},
{
"Changes:": [
"-score = pickle.load(open('score_of_topics.pkl'),'rb')\n",
"+score = pickle.load(open('score_of_topics.pkl','rb'))\n"
],
"Message:": "Update predict locations.py",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/hmc-cs-nsuaysom/Math-REU-2016-UCLA-Social-Media-Data/commit/e5bb7094032b03c904ef4f4230741cd4b4c1c6e1",
"Commit Corrections:": "https://github.com/hmc-cs-nsuaysom/Math-REU-2016-UCLA-Social-Media-Data/commit/8547ac9aa0d48fe4abe19b01100f7def70b12135"
},
{
"Changes:": [
"-class Template(object):\n",
"+class Template():\n"
],
"Message:": "Trying to fix saving and loading",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Exodus111/Projects/commit/0cfba76a63234232ac4976ce61b348160fe7c9c7",
"Commit Corrections:": "https://github.com/Exodus111/Projects/commit/9a258204f1458f3d1f88dcd2033271a180ceee09"
},
{
"Changes:": [
"- yield ValidationError(\"%r has non-unique elements\" % (instance,))\n",
"+ yield ValidationError(\"%r has non-unique elements\" % instance)\n"
],
"Message:": "merging from upstream",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/purukaushik/jsonschema/commit/b9cfbbaeef75569dc2607887e397b86ab0bf4727",
"Commit Corrections:": "https://github.com/purukaushik/jsonschema/commit/b9e24a05132d1b3b71d01f7b4188c99e569e837a"
},
{
"Changes:": [
"-\tport = int(os.environ.get(\"PORT\", 5000))\n",
"+ port = int(os.environ.get(\"PORT\", 5000))\n"
],
"Message:": "procfile update",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/fabians2898/lf-test/commit/e4a0798f59ecd8d54430f85a4690016ae012729a",
"Commit Corrections:": "https://github.com/fabians2898/lf-test/commit/8f8be2323b34162c5216384b10fbf01dbd77f820"
},
{
"Changes:": [
"- 'molo.servicedirectory'\n",
"+ 'molo.servicedirectory',\n"
],
"Message:": "Add missing comma",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/praekelt/molo-tuneme/commit/7b8af3ec5278418a6cca67f7a2b449e450b76808",
"Commit Corrections:": "https://github.com/praekelt/molo-tuneme/commit/a8b5c2d7bf1d4331d8557cda016670fa81b3b573"
},
{
"Changes:": [
"- AttributeError(item)\n",
"+ raise AttributeError(item)\n"
],
"Message:": "Raise attribute error when you try to access non model field.",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/ctxis/lather/commit/9653de0da6a61eb79830d712f3fc9ef3637323a6",
"Commit Corrections:": "https://github.com/ctxis/lather/commit/fa227ad7e384f1d6af176bf0c529e8144e10df7c"
},
{
"Changes:": [
"- if k.startswith(name):\n",
"+ if k.startswith('%s.' % name):\n"
],
"Message:": "Bugfix for masks in meta['sets']['data file']['items']",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Quantipy/quantipy/commit/051d6bbbec6a128f54bfbd58309bb33f4e38c071",
"Commit Corrections:": "https://github.com/Quantipy/quantipy/commit/523c02c6282e6099bbb6064a26d1a292f0974fa9"
},
{
"Changes:": [
"- msg += '```'\n",
"+ msg += '```'\n"
],
"Message:": "Comments and fixed for osu! plugin",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/Ma-wa-re/akoBot/commit/95f9e96cd0d8000d26efa16525a346dfd4d1cb0a",
"Commit Corrections:": "https://github.com/Ma-wa-re/akoBot/commit/7777a4a0229e1dfe5911f004684006c846d65b32"
},
{
"Changes:": [
"- featurevector = get_featurevector(training_data_directory + directory + '/' + file)\n",
"+ featurevector = get_feature_vector(training_data_directory + directory + '/' + file)\n"
],
"Message:": "Correcting function naming in get_training_data",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/joanneljhill/image_classifier/commit/2642d6deeae0f3952b35bf1a4d7d428df8acc8b1",
"Commit Corrections:": "https://github.com/joanneljhill/image_classifier/commit/7fec04576e01e4a3178269d1bff9bb888a9bbfe6"
},
{
"Changes:": [
"- cache_timeout=None, overwrite_cache=False,):\n",
"+ cache_timeout=None, overwrite_cache=False):\n"
],
"Message:": "Remove trailing comma",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/dimagi/commcare-hq/commit/bbb5ea4ca2b069c890f49309b03e10a28970b9fa",
"Commit Corrections:": "https://github.com/dimagi/commcare-hq/commit/71c392d2cdab913af05ce01b5a0e09f06f5572aa"
},
{
"Changes:": [
"- if len(args) >= 1 and args[1] == '.':\n",
"+ if len(args) >= 1 and args[0] == '.':\n"
],
"Message:": "Wrong index",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/rocky/python2-trepan/commit/6d328451678024c8af139aa3b7a55328509ddd83",
"Commit Corrections:": "https://github.com/rocky/python2-trepan/commit/3d7dd877c31ac071b678fb8e51fc9c9cd7507cd0"
},
{
"Changes:": [
"- last_exception = Exception(\"Reached max-attempts (%s). Giving up calling %s %s\" % (self.max_attempts, self.method, self.url)\n",
"+ last_exception = Exception(\"Reached max-attempts (%s). Giving up calling %s %s\" % (self.max_attempts, self.method, self.url))\n"
],
"Message:": "Typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/erwan-lemonnier/klue-client-server/commit/f65a4568f23a276622833ddcda6a6e6b153f7d68",
"Commit Corrections:": "https://github.com/erwan-lemonnier/klue-client-server/commit/44284ec3dbe8bc206b5b06bed00269d3bd3c70eb"
},
{
"Changes:": [
"- extra_compile_args=[\"-std=c++11\", \"-w\"])]\n",
"+ extra_compile_args=[\"-std=c++11\", \"-w\"])],\n"
],
"Message:": "comma fix",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/TuragaLab/zwatershed/commit/8f60c1612623626023ddcd824b0a4f721b86d49d",
"Commit Corrections:": "https://github.com/TuragaLab/zwatershed/commit/86d8301eced91d626148a81193ed98c343dfe2a4"
},
{
"Changes:": [
"- messageStack[userName] = messaeStack[userName] + individualMessage\n",
"+ messageStack[userName] = messageStack[userName] + individualMessage\n"
],
"Message:": "6.2",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/magnusonsvds/Slack-Application/commit/8062331028b58464c3803b1337628c00d92ce3b8",
"Commit Corrections:": "https://github.com/magnusonsvds/Slack-Application/commit/b74767e9b557a2018bd58fb2bae1ecf027edfc91"
},
{
"Changes:": [
"- download_ulr = download_url_mirror\n",
"+ download_url = download_url_mirror\n"
],
"Message:": "Fix typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/joaojunior/django-haystack/commit/5c24066d9ee6fd589078af950ea60bd6a0e7ef81",
"Commit Corrections:": "https://github.com/joaojunior/django-haystack/commit/efab1a5d02b34d1d44d116582ec1445ab2921900"
},
{
"Changes:": [
"- if action != \"created\" and action != \"edited\" and action != \"deleted\" \n",
"+ if action != \"created\" and action != \"edited\" and action != \"deleted\":\n"
],
"Message:": "Fix :",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/alvarollmenezes/taiga-back/commit/567c45e0afd46754e4879fe8fc0e015be81b4bed",
"Commit Corrections:": "https://github.com/alvarollmenezes/taiga-back/commit/049a797c036e46c4af17bc40c6b9c04e3e7097ae"
},
{
"Changes:": [
"- parser.add_argument('-V', '--version', action='version', version='%%(prog)s %s'%ver,\n",
"+ parser.add_argument('-V', '--version', action='version', version='%%(prog)s %s'%version,\n"
],
"Message:": "Fixed version string customization bug",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/mnmelo/MDreader/commit/e6ddca998577352a932b1e6a64d4daf588be1c32",
"Commit Corrections:": "https://github.com/mnmelo/MDreader/commit/03a1f85c897d0ee85ac2cbc23df69f29ab876f98"
},
{
"Changes:": [
"- if 'minimize_nonuniformity' in parset_dict:\n",
"+ if 'minimize_nonuniformity' in parset_dict:\n"
],
"Message:": "Fix typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lofar-astron/factor/commit/409978bc98965c0138a3bb84f22ab619cf8d485d",
"Commit Corrections:": "https://github.com/lofar-astron/factor/commit/a7b3e8718c163620795855f49c9e3c3ea7ca5ecd"
},
{
"Changes:": [
"- placed_path = \"/user/\" + config.user \"/qa_data/\" + filename\n",
"+ placed_path = \"/user/\" + config.user + \"/qa_data/\" + filename\n"
],
"Message:": "typo",
"Additions:": 1,
"Deletions:": 1,
"Commit Mistakes:": "https://github.com/lewisc/spark-tk/commit/464f14cf4abdb567df301492583cd6ecb9352dbe",
"Commit Corrections:": "https://github.com/lewisc/spark-tk/commit/a4b0bd7480b43b5a6601a07e7908b35cd8a5d026"
},
{
"Changes:": [
"-import time\n",
"-import RPi.GPIO as GPIO\n",
"- servoPin=11\n",
"+ servoPin = 11\n",
"- pwm=GPIO.PWM(seroPin, 50)\n",
"+ pwm = GPIO.PWM(seroPin, 50)\n",
"- for i in range(0,180):\n",
"- desiredPosition=input(\"Where do you want the servo? 0-180?\")\n",
"- DC=1./18.*(desiredPosition)+2\n",
"- pwm.ChangeDutyCycle(DC)\n",
"- pwm.stop()\n",
"- \n",
"- \n",
"+ for i in range(0, 180):\n",
"+ desiredPosition = input(\"Where do you want the servo? 0-180?\")\n",
"+ DC = float(1 / 18) * (desiredPosition) + 2\n",
"+ pwm.ChangeDutyCycle(DC)\n",
"+ pwm.stop()\n",
"+\n"