hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
6c50b15a273d29dc3820b5e4d50d78eeb113d335
diff --git a/errors.go b/errors.go index <HASH>..<HASH> 100644 --- a/errors.go +++ b/errors.go @@ -85,10 +85,8 @@ func HandleExitCoder(err error) { } if multiErr, ok := err.(MultiError); ok { - for _, merr := range multiErr.Errors { - fmt.Fprintln(ErrWriter, merr) - } - OsExiter(1) + code := handleMultiErro...
Exit with the code of ExitCoder if exists
urfave_cli
train
go
125b421e07bed18576df926e11f8d27b67a7bc61
diff --git a/events/facebookEvents.js b/events/facebookEvents.js index <HASH>..<HASH> 100644 --- a/events/facebookEvents.js +++ b/events/facebookEvents.js @@ -21,6 +21,10 @@ function saveFacebookEvents(eventsWithVenues, row, grpIdx) { if (!row.location) { return; } + if (!row.end_time){ + //TODO...
fix(facebook) added null check for end_time
webuildorg_webuild-repos
train
js
290166ac4129bc4a7145dcbe44b8c46e36f3fa56
diff --git a/core-bundle/contao/dca/tl_article.php b/core-bundle/contao/dca/tl_article.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/dca/tl_article.php +++ b/core-bundle/contao/dca/tl_article.php @@ -687,7 +687,7 @@ class tl_article extends Backend $arrSections = array_merge($arrSections, $arrCustom); ...
[Core] Correctly assign articles to columns (see #<I>)
contao_contao
train
php
275241caf6b09938a5adc6971d6cca0d7b06c700
diff --git a/lib/vagrant/vm.rb b/lib/vagrant/vm.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/vm.rb +++ b/lib/vagrant/vm.rb @@ -49,11 +49,11 @@ module Vagrant @logger.info("Loading guest: #{guest}") if guest.is_a?(Class) - raise Errors::VMGuestError, :_key => :invalid_class, :system => guest.t...
fix interpolation error in VMGuestError strings
hashicorp_vagrant
train
rb
7c3af781ec1ad2e1c04a2b203fec0ff23f7bde76
diff --git a/includes/functions/functions_mediadb.php b/includes/functions/functions_mediadb.php index <HASH>..<HASH> 100644 --- a/includes/functions/functions_mediadb.php +++ b/includes/functions/functions_mediadb.php @@ -923,7 +923,7 @@ function get_media_folders() { $entry = $dir->read(); if (!$entry) ...
FIX: is_dir() gives error with badly-formed directories when open_basedir is in effect.
fisharebest_webtrees
train
php
1691baae726c261ce7d15a38cb07d1093ad268e2
diff --git a/lib/gscraper/version.rb b/lib/gscraper/version.rb index <HASH>..<HASH> 100644 --- a/lib/gscraper/version.rb +++ b/lib/gscraper/version.rb @@ -20,5 +20,5 @@ module GScraper # The version of GScraper - VERSION = '0.3.1' + VERSION = '0.4.0' end
Version bump to <I>.
postmodern_gscraper
train
rb
3f96fcd77db86e0b30388ace1da40d8acbeb0e78
diff --git a/tests/letter_tests.py b/tests/letter_tests.py index <HASH>..<HASH> 100644 --- a/tests/letter_tests.py +++ b/tests/letter_tests.py @@ -94,7 +94,7 @@ class Letters(unittest.TestCase): c = [] for i,b_w in enumerate(b): w = utf8.join_letters_elementary(b_w) - print u"%...
PYTHON3 bugbear in tests
Ezhil-Language-Foundation_open-tamil
train
py
f214bd9637fd7bbd114994c4c2418a9ca37390d7
diff --git a/packages/ssr/src/lib/run-client.js b/packages/ssr/src/lib/run-client.js index <HASH>..<HASH> 100644 --- a/packages/ssr/src/lib/run-client.js +++ b/packages/ssr/src/lib/run-client.js @@ -32,9 +32,7 @@ const makeClient = options => { if (typeof window !== "undefined" && window.nuk) { const acsTnlCook...
fix: revert cookie pagination fix (#<I>)
newsuk_times-components
train
js
861b11d0983fdf56d4a8596efadae2b63f4a1da9
diff --git a/modules/core/bundle/index.js b/modules/core/bundle/index.js index <HASH>..<HASH> 100644 --- a/modules/core/bundle/index.js +++ b/modules/core/bundle/index.js @@ -3,13 +3,16 @@ const LumaGL = require('./lumagl'); const deckGLCore = require('../src'); const DeckGL = require('./deckgl').default; +const {r...
Expose loaders.gl endpoints from the core bundle (#<I>)
uber_deck.gl
train
js
ab260f15cae94c6802c2f2769fb448ad213b79cd
diff --git a/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py b/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py index <HASH>..<HASH> 100644 --- a/tensorflow_probability/python/experimental/mcmc/diagonal_mass_matrix_adaptation.py +++ b/tensorflow_proba...
Add missing dtype in `diagonal_mass_matrix_adaptation`
tensorflow_probability
train
py
167a65a0a174fc323d17aa357249075eccbb09b3
diff --git a/nitro.js b/nitro.js index <HASH>..<HASH> 100644 --- a/nitro.js +++ b/nitro.js @@ -542,7 +542,6 @@ var defcat = 'all'; try { var config = require('./config.json'); - download_history = giUtils.downloadHistory(config.download_history); host = config.nitro.host; api_key = config.nitro.api_key; medi...
nitro; only load download_history if needed
MikeRalphson_bbcparse
train
js
f0d2f82dae373632e1f6e7b982f95fa2f99effe6
diff --git a/fsquery/fsquery.py b/fsquery/fsquery.py index <HASH>..<HASH> 100644 --- a/fsquery/fsquery.py +++ b/fsquery/fsquery.py @@ -67,6 +67,22 @@ class FSNode : if r.search(line) : return True return False + + def get_child(self,pat) : + if not self.isdir() :...
added git_child and get_parent functionality to FSNode
interstar_FSQuery
train
py
4ae2065e9204d39f8ab16df9e6b6b6b187220f87
diff --git a/lib/chewy/config.rb b/lib/chewy/config.rb index <HASH>..<HASH> 100644 --- a/lib/chewy/config.rb +++ b/lib/chewy/config.rb @@ -112,6 +112,7 @@ module Chewy def configuration yaml_settings.merge(settings.deep_symbolize_keys).tap do |configuration| configuration[:logger] = transport_logge...
Use default indices_path path (#<I>) Once I run `rake chewy:reset` it raised an error with: ``` TypeError: no implicit conversion of nil into String ``` Once I set `indices_path` in a chewy.yml file then this issue was solved. Since this change now `indices_path` used by default, so you don't need to set it t...
toptal_chewy
train
rb
528287066c875f5851df424d99ddaf65f8cfaa91
diff --git a/utils/loggers.py b/utils/loggers.py index <HASH>..<HASH> 100644 --- a/utils/loggers.py +++ b/utils/loggers.py @@ -1,7 +1,7 @@ import logging -LOG_NAMES = ['webant', 'fsdb', 'presets', 'agherant', 'config_utils', 'libreantdb', 'archivant', 'users'] +LOG_NAMES = ['webant', 'fsdb', 'presets', 'agherant',...
added werkzeug to handled loggers
insomnia-lab_libreant
train
py
fce7424bebfe2b22677a9909a846535296be1805
diff --git a/blog/locallib.php b/blog/locallib.php index <HASH>..<HASH> 100644 --- a/blog/locallib.php +++ b/blog/locallib.php @@ -117,7 +117,7 @@ class blog_entry { $this->summary = file_rewrite_pluginfile_urls($this->summary, 'pluginfile.php', SYSCONTEXTID, 'blog', 'post', $this->id); $options = a...
MDL-<I> moved blog comments to end of body of blog entry. we now see the entire blog entry without comments in the way.
moodle_moodle
train
php
112b4a88a0cb8ffa3cc8b7c1b7e4117f7124ef01
diff --git a/src/shared/js/ch.Popover.js b/src/shared/js/ch.Popover.js index <HASH>..<HASH> 100644 --- a/src/shared/js/ch.Popover.js +++ b/src/shared/js/ch.Popover.js @@ -401,7 +401,6 @@ timeOut, events; - function hide(event) { if (event.target !== that._el && event.ta...
#<I> Move private functions inside the closable scope.
mercadolibre_chico
train
js
61d0494659e154e722d039757117719b928bef70
diff --git a/calendar-bundle/src/Resources/contao/classes/Events.php b/calendar-bundle/src/Resources/contao/classes/Events.php index <HASH>..<HASH> 100644 --- a/calendar-bundle/src/Resources/contao/classes/Events.php +++ b/calendar-bundle/src/Resources/contao/classes/Events.php @@ -281,6 +281,8 @@ abstract class Events...
[Calendar] Encode e-mail addresses in the event teaser.
contao_contao
train
php
0cbed52a3ba91259369b7b6ed6f2b34dd35b4844
diff --git a/server/camlistored/ui/blob_item_container_react.js b/server/camlistored/ui/blob_item_container_react.js index <HASH>..<HASH> 100644 --- a/server/camlistored/ui/blob_item_container_react.js +++ b/server/camlistored/ui/blob_item_container_react.js @@ -379,7 +379,8 @@ cam.BlobItemContainerReact = React.create...
UI: add title arg to history.replaceState According to <URL> argument is ignored. However, in the chrome console I'm getting Uncaught TypeError: Failed to execute 'replaceState' on 'History': 2 arguments required, but only 1 present. errors so I figure it's worth fixing. Change-Id: I6b<I>a<I>c<I>c<I>b<I>e7df9b8acb
perkeep_perkeep
train
js
16d4fb7e52c54b7de684a6da59fe98af9c1ae001
diff --git a/pkg/apis/rbac/helpers.go b/pkg/apis/rbac/helpers.go index <HASH>..<HASH> 100644 --- a/pkg/apis/rbac/helpers.go +++ b/pkg/apis/rbac/helpers.go @@ -147,6 +147,10 @@ func (r PolicyRule) String() string { func (r PolicyRule) CompactString() string { formatStringParts := []string{} formatArgs := []interfac...
Display apiGroups before resources in PolicyRule
kubernetes_kubernetes
train
go
6e4a148c12d3037d62924bf54c3de0db2355b86d
diff --git a/Form/Type/StatusType.php b/Form/Type/StatusType.php index <HASH>..<HASH> 100644 --- a/Form/Type/StatusType.php +++ b/Form/Type/StatusType.php @@ -15,7 +15,7 @@ class StatusType extends AbstractType unset($choices[0]); $resolver->setDefaults(array( - 'choices' => TicketMessage...
fix typo: $choices isn't a property of TicketMessage
hackzilla_ticket-message
train
php
397249d3806ccde1ee021f320146ec82e98201b6
diff --git a/bcbio/variation/phasing.py b/bcbio/variation/phasing.py index <HASH>..<HASH> 100644 --- a/bcbio/variation/phasing.py +++ b/bcbio/variation/phasing.py @@ -28,7 +28,9 @@ def read_backed_phasing(vcf_file, bam_files, genome_file, region, config): params = ["-T", "ReadBackedPhasing", ...
Downsample by default for phasing to avoid slowdowns in deeply covered regions
bcbio_bcbio-nextgen
train
py
5764899632d0b4a008d60442b92e6625398be22d
diff --git a/angr/analyses/cfg.py b/angr/analyses/cfg.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg.py +++ b/angr/analyses/cfg.py @@ -2558,6 +2558,7 @@ class CFG(Analysis, CFGBase): return self._immediate_dominators(end, target_graph=target_graph, reverse_graph=True) def __setstate__(self, s): ...
CFG: dump self.projects when pickling CFGs.
angr_angr
train
py
777c6ebdceed06c2679f2e09c66c007dbc2c68e4
diff --git a/proso_concepts/models.py b/proso_concepts/models.py index <HASH>..<HASH> 100644 --- a/proso_concepts/models.py +++ b/proso_concepts/models.py @@ -257,7 +257,7 @@ class UserStatManager(models.Manager): environment = get_environment() mastery_threshold = get_mastery_trashold() for ...
concepts - for sqlite - give list to environment instead of set
adaptive-learning_proso-apps
train
py
61a5037a504472448663870fd752be39bfb8ddf5
diff --git a/app/templates/src/main/java/package/domain/_User.java b/app/templates/src/main/java/package/domain/_User.java index <HASH>..<HASH> 100644 --- a/app/templates/src/main/java/package/domain/_User.java +++ b/app/templates/src/main/java/package/domain/_User.java @@ -57,8 +57,8 @@ public class User implements Se...
The field should be present independent to hibernateCache fixes #<I>
jhipster_generator-jhipster
train
java
13d4d984d0393ddc01471b2202b1e6fc3b66a267
diff --git a/src/notebook/epics/github-publish.js b/src/notebook/epics/github-publish.js index <HASH>..<HASH> 100644 --- a/src/notebook/epics/github-publish.js +++ b/src/notebook/epics/github-publish.js @@ -40,7 +40,6 @@ export function notifyUser(filename, gistID, notificationSystem) { }, }); } -// give these...
chore(publish): Remove extraneous comment
nteract_nteract
train
js
7cd413a402e86d10b5fa4c11d6666423f83cd93a
diff --git a/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java b/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog2/rest/resources/streams/StreamResource.java +++ b/graylog...
Newly created (or cloned) streams are paused now Fixes #<I>
Graylog2_graylog2-server
train
java
6e2df6a17c52f042d78012de4820219ab7b849bb
diff --git a/lib/resourceful/resource.js b/lib/resourceful/resource.js index <HASH>..<HASH> 100644 --- a/lib/resourceful/resource.js +++ b/lib/resourceful/resource.js @@ -753,7 +753,7 @@ Resource.timestamps = function () { // // The last time the resource was accessed // - this.property('atime', 'number', { f...
[minor] Comment out atime until it's logic is added
flatiron_resourceful
train
js
0bf25bf1c27c308681e811351e457dd1ca7d834e
diff --git a/tests/Propel/Tests/Generator/Model/TableTest.php b/tests/Propel/Tests/Generator/Model/TableTest.php index <HASH>..<HASH> 100644 --- a/tests/Propel/Tests/Generator/Model/TableTest.php +++ b/tests/Propel/Tests/Generator/Model/TableTest.php @@ -77,7 +77,7 @@ EOF; $table = $schema->getDatabase('test1'...
[Tests] fixed wrong method call in TableTest test suite.
propelorm_Propel2
train
php
817221b209669d71dc3c7288832d37cd2677cde0
diff --git a/test/unit/test_identity_map_middleware.rb b/test/unit/test_identity_map_middleware.rb index <HASH>..<HASH> 100644 --- a/test/unit/test_identity_map_middleware.rb +++ b/test/unit/test_identity_map_middleware.rb @@ -8,7 +8,7 @@ class IdentityMapMiddlewareTest < Test::Unit::TestCase @app ||= Rack::Builde...
Fix middleware test on Ruby <I> Rack's MockResponse calls #each on the body, which is not defined on String in Ruby <I>
mongomapper_mongomapper
train
rb
d53b0ca9f5bb1e04ba8df999f9dcac10f75c7a6b
diff --git a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js index <HASH>..<HASH> 100644 --- a/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js +++ b/src/scaladoc/scala/tools/nsc/doc/html/resource/lib/template.js @@ -259,7 +25...
Toggle comment if no text is selected fixes scala/scala-lang/issues/<I>
scala_scala
train
js
c26eab28518533a9be91625569078f5783cfc7b3
diff --git a/lib/modules/apostrophe-versions/lib/routes.js b/lib/modules/apostrophe-versions/lib/routes.js index <HASH>..<HASH> 100644 --- a/lib/modules/apostrophe-versions/lib/routes.js +++ b/lib/modules/apostrophe-versions/lib/routes.js @@ -8,7 +8,7 @@ module.exports = function(self, options) { var versions; ...
apostrophe-versions doc cursor includes 'unpublished' docs
apostrophecms_apostrophe
train
js
dd326d0aea17805c9ff0c04a1c9444811c7cb954
diff --git a/model/consoleState.js b/model/consoleState.js index <HASH>..<HASH> 100644 --- a/model/consoleState.js +++ b/model/consoleState.js @@ -174,13 +174,15 @@ exports.ConsoleState = BaseModel.extend({ } // Update FPS. - var fps = 1000 / (this._tickSum / this._maxTicks); - fps *= ...
don't add to fps history if heartbeat hasn't started
stimulant_ampm
train
js
614bf446fc78111ab91d1a3b739bc8e20289400c
diff --git a/consul/pool.go b/consul/pool.go index <HASH>..<HASH> 100644 --- a/consul/pool.go +++ b/consul/pool.go @@ -215,7 +215,7 @@ func (p *ConnPool) acquire(dc string, addr net.Addr, version int) (*Conn, error) var wait chan struct{} var ok bool if wait, ok = p.limiter[addr.String()]; !ok { - wait = make(ch...
Changes to an unbuffered channel, since we just close it.
hashicorp_consul
train
go
659c9623b93ba91cc69aa117f1df04cb83dfba70
diff --git a/app/models/effective/datatable.rb b/app/models/effective/datatable.rb index <HASH>..<HASH> 100644 --- a/app/models/effective/datatable.rb +++ b/app/models/effective/datatable.rb @@ -315,8 +315,7 @@ module Effective cols[name][:width] ||= nil cols[name][:sortable] = true if cols[name][:sor...
Add “col-name” as a td class as well. Version <I>
code-and-effect_effective_datatables
train
rb,rb
cecd45ff7575addc11cf75bbb2349822e49a5df4
diff --git a/src/file/NativeFileSystem.js b/src/file/NativeFileSystem.js index <HASH>..<HASH> 100644 --- a/src/file/NativeFileSystem.js +++ b/src/file/NativeFileSystem.js @@ -952,7 +952,7 @@ define(function (require, exports, module) { if (brackets.fs.isNetworkDrive) { brackets.fs.isNetw...
Check errors before adjusting timeout.
adobe_brackets
train
js
3d335e48ffe301b826245dee1242997cbfba6869
diff --git a/builtin/providers/aws/resource_aws_volume_attachment.go b/builtin/providers/aws/resource_aws_volume_attachment.go index <HASH>..<HASH> 100644 --- a/builtin/providers/aws/resource_aws_volume_attachment.go +++ b/builtin/providers/aws/resource_aws_volume_attachment.go @@ -77,6 +77,25 @@ func resourceAwsVolume...
Check instance is running before trying to attach (#<I>) This covers the scenario of an instance created by a spot request. Using Terraform we only know the spot request is fulfilled but the instance can still be pending which causes the attachment to fail.
hashicorp_terraform
train
go
37ab299ba3cd1f10fccda41bda580e24f7e1f07f
diff --git a/source/application/tasks/build-bundles/index.js b/source/application/tasks/build-bundles/index.js index <HASH>..<HASH> 100644 --- a/source/application/tasks/build-bundles/index.js +++ b/source/application/tasks/build-bundles/index.js @@ -57,11 +57,17 @@ export default async (application, settings) => { }...
fix: apply environment config to bundles properly * environment config was merged into transforms * environment config now is merged with whole pattern config <URL>
patternplate-archive_patternplate-server
train
js
98dd795c01df0da4c1adc6134fcdb2d6d774afc7
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -295,6 +295,8 @@ module ActionDispatch end end + # return...
Documentation for ActionDispatch::Request form_data? method [ci skip]
rails_rails
train
rb
6bc89d2fdf58191daf1c115dfe521ed741136353
diff --git a/src/Json.php b/src/Json.php index <HASH>..<HASH> 100644 --- a/src/Json.php +++ b/src/Json.php @@ -4,6 +4,7 @@ declare(strict_types = 1); namespace Innmind\Json; use Innmind\Json\Exception\{ + Exception, MaximumDepthExceeded, StateMismatch, CharacterControlError, @@ -24,6 +25,8 @@ fina...
Document exceptions thrown by public methods
Innmind_Json
train
php
f7ae6e1cd650134a3a72362b756b65dffb68c453
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/generators/rails/app/app_generator.rb +++ b/railties/lib/rails/generators/rails/app/app_generator.rb @@ -313,7 +313,7 @@ module Rails ...
no need to dup, argv is never mutated
rails_rails
train
rb
d5d2cc513725e77afac2bd8a5d93e3130f756257
diff --git a/ghost/members-api/index.js b/ghost/members-api/index.js index <HASH>..<HASH> 100644 --- a/ghost/members-api/index.js +++ b/ghost/members-api/index.js @@ -96,8 +96,7 @@ module.exports = function MembersApi({ async function getMemberDataFromMagicLinkToken(token) { const email = await magicLin...
Added name from magic link token to member creation refs <URL>
TryGhost_Ghost
train
js
13dcd5d4e96bd6b393685c79f2bd793a06a19167
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='Highton', - version='1.2.6', + version='1.2.7', license='Apache License 2.0', description='A Python library for Highrise', long_description='A...
Version Push and Upload to PyPi
seibert-media_Highton
train
py
dec03034f97f759633cf505441ab8f539aba8337
diff --git a/src/Zizaco/Mongolid/Model.php b/src/Zizaco/Mongolid/Model.php index <HASH>..<HASH> 100644 --- a/src/Zizaco/Mongolid/Model.php +++ b/src/Zizaco/Mongolid/Model.php @@ -656,13 +656,13 @@ class Model // will be returned from cache =) return static::$cacheComponent->remember( ...
Fix error with MongoDB <I>
leroy-merlin-br_mongolid
train
php
b4a1f6a63e0ba71cfd013396aeb8d2e29c0a295f
diff --git a/src/utils/save-cordova-xml.js b/src/utils/save-cordova-xml.js index <HASH>..<HASH> 100644 --- a/src/utils/save-cordova-xml.js +++ b/src/utils/save-cordova-xml.js @@ -15,6 +15,9 @@ const parseXML = function(xmlPath) { return new RSVP.Promise((resolve, reject) => { const contents = fs.readFileSync(xm...
fix(save-cordova-xml): Update test to guard against config.xml being empty
isleofcode_splicon
train
js
0135efed05759d04ee22cda0abaffe8d6dab3374
diff --git a/timewave/stochasticprocess.py b/timewave/stochasticprocess.py index <HASH>..<HASH> 100755 --- a/timewave/stochasticprocess.py +++ b/timewave/stochasticprocess.py @@ -42,6 +42,25 @@ class StochasticProcess(object): """ return 0.0 + def mean(self, t): + """ expected value of tim...
adding mean and variance properties to StochasticProcess
pbrisk_timewave
train
py
b2cd21e7a299271e02d0089e09ca1b07bb59ce7f
diff --git a/src/org/javasimon/SimonFactory.java b/src/org/javasimon/SimonFactory.java index <HASH>..<HASH> 100644 --- a/src/org/javasimon/SimonFactory.java +++ b/src/org/javasimon/SimonFactory.java @@ -149,7 +149,7 @@ public final class SimonFactory { if (simon == null) { simon = newSimon(name, simonClass); ...
Fixed enable/disable state after replacing unknown simon with a concrete one.
virgo47_javasimon
train
java
b95bcc89395072122f78b45e633680cda226d16a
diff --git a/js/allcoin.js b/js/allcoin.js index <HASH>..<HASH> 100644 --- a/js/allcoin.js +++ b/js/allcoin.js @@ -27,6 +27,11 @@ module.exports = class allcoin extends okcoinusd { 'doc': 'https://www.allcoin.com/api_market/market', 'referral': 'https://www.allcoin.com', }...
[Allcoin] Set Status to Shutdown
ccxt_ccxt
train
js
cb5dcef9429afc282f4c22af2db26cd356f0eba0
diff --git a/mythril/analysis/modules/multiple_sends.py b/mythril/analysis/modules/multiple_sends.py index <HASH>..<HASH> 100644 --- a/mythril/analysis/modules/multiple_sends.py +++ b/mythril/analysis/modules/multiple_sends.py @@ -1,4 +1,5 @@ from mythril.analysis.report import Issue +from mythril.laser.ethereum.cfg i...
Don't explore nodes that aren't in the same transaction
ConsenSys_mythril-classic
train
py
c8767367df9e7d744ed1220283032182c7745215
diff --git a/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java b/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java index <HASH>..<HASH> 100644 --- a/compare-comply/src/main/java/com/ibm/watson/compare_comply/v1/CompareComply.java +++ b/compare-comply/src/mai...
refactor(Compare and Comply): Add newest generator output
watson-developer-cloud_java-sdk
train
java
30ea5acfd81b9eef4c8211b5f5ff22b404d3c44d
diff --git a/spinoff/util/microprocess.py b/spinoff/util/microprocess.py index <HASH>..<HASH> 100644 --- a/spinoff/util/microprocess.py +++ b/spinoff/util/microprocess.py @@ -75,7 +75,7 @@ class MicroProcess(object): @self.d.addBoth def finally_(result): d = self._on_complete() - ...
Avoid swallowing exceptions in microprocesses
eallik_spinoff
train
py
107a9aba63cb57ad4b995c26c0922c66fe27f5ad
diff --git a/lib/graphql/subscriptions/action_cable_subscriptions.rb b/lib/graphql/subscriptions/action_cable_subscriptions.rb index <HASH>..<HASH> 100644 --- a/lib/graphql/subscriptions/action_cable_subscriptions.rb +++ b/lib/graphql/subscriptions/action_cable_subscriptions.rb @@ -46,7 +46,7 @@ module GraphQL # ...
Fix ActionCableSubscriptions channel example Simple typo that leads to memory leaks!
rmosolgo_graphql-ruby
train
rb
832b5f6d09e2742fb01e76fb325f450b737c0f96
diff --git a/packages/address-edit/index.js b/packages/address-edit/index.js index <HASH>..<HASH> 100644 --- a/packages/address-edit/index.js +++ b/packages/address-edit/index.js @@ -211,6 +211,13 @@ export default sfc({ setAddressDetail(value) { this.data.addressDetail = value; + }, + + onDetailBlu...
[bugfix] AddressEdit: select search not work in vue <I>+ (#<I>)
youzan_vant
train
js
460255784e7acd1c73756a2f41f4dbc5dedbb182
diff --git a/rejected/common.py b/rejected/common.py index <HASH>..<HASH> 100644 --- a/rejected/common.py +++ b/rejected/common.py @@ -8,7 +8,15 @@ __since__ = '2011-07-22' def get_consumer_config(config): - return config.get('Consumers') or config.get('Bindings') + config = config.get('Consumers') or config...
Squash legacy consumers YAML section into the main consumer config section
gmr_rejected
train
py
8e2d6bd68af6be454b1e6256360b07caec2b4a4e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ params = dict( url="https://github.com/jaraco/" + name, packages=setuptools.find_packages(), include_package_data=True, - namespace_packages=name.split('.')[:-1], install_requires=[ 'requests', 'si...
Also need to remove the namespace packages declaration
jaraco_jaraco.packaging
train
py
674cc95c75c0fcedde99259fd8e58661c6a7e884
diff --git a/openquake/calculators/disaggregation.py b/openquake/calculators/disaggregation.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/disaggregation.py +++ b/openquake/calculators/disaggregation.py @@ -279,6 +279,7 @@ producing too small PoEs.''' for s in self.sitecol.sids: iml2 =...
Better logging for disaggregation [skip CI] Former-commit-id: d<I>bfcd4ee<I>e<I>bf<I>e5f<I>a<I>ab<I>
gem_oq-engine
train
py
26587796ce640a17a33d263e47650228507c2d8f
diff --git a/Lib/ufo2ft/filters/cubicToQuadratic.py b/Lib/ufo2ft/filters/cubicToQuadratic.py index <HASH>..<HASH> 100644 --- a/Lib/ufo2ft/filters/cubicToQuadratic.py +++ b/Lib/ufo2ft/filters/cubicToQuadratic.py @@ -29,7 +29,7 @@ class CubicToQuadraticFilter(BaseFilter): logger.info('New spline lengths: %s'...
[cubicToQuadratic] minor forgot to remove this in <I>
googlefonts_ufo2ft
train
py
d5e58841e6d210fa633aa7f4b12285465a293fc5
diff --git a/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java b/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/database/core/PostgresDatabase.java +++ b/liquibase-core/src/main/java/liquibase/d...
Check connection type to work better with tests with mock connection
liquibase_liquibase
train
java
d2fdc7c1d59b17be2da7f0b3a845edb782bce224
diff --git a/kitnirc/client.py b/kitnirc/client.py index <HASH>..<HASH> 100644 --- a/kitnirc/client.py +++ b/kitnirc/client.py @@ -401,7 +401,7 @@ class Client(object): def part(self, target, message=None): """Part a channel.""" - if target not in self.server.channels: + if str(target) not...
String-ify before checking .channels membership This allows passing in `Channel` objects to work properly.
ayust_kitnirc
train
py
d07828a70dd0dc49f9fd9048cadea2e5cce63eb6
diff --git a/angr/storage/memory_mixins/address_concretization_mixin.py b/angr/storage/memory_mixins/address_concretization_mixin.py index <HASH>..<HASH> 100644 --- a/angr/storage/memory_mixins/address_concretization_mixin.py +++ b/angr/storage/memory_mixins/address_concretization_mixin.py @@ -340,7 +340,7 @@ class Add...
Remove a check that is no longer necessary.
angr_angr
train
py
a1b3935f274a5d6b45cfab0f7d6184aa0909dea8
diff --git a/test/beetle/message_test.rb b/test/beetle/message_test.rb index <HASH>..<HASH> 100644 --- a/test/beetle/message_test.rb +++ b/test/beetle/message_test.rb @@ -466,5 +466,17 @@ module Beetle assert !@r.exists(message.mutex_key) end end + + class RedisAssumptionsTest < Test::Unit::TestCase + ...
verify a basic assumotion on deleting redis keys
xing_beetle
train
rb
dbe90cae71a8b2a28d43186204f9f4e05ae03114
diff --git a/lib/Cake/Test/Case/Utility/ValidationTest.php b/lib/Cake/Test/Case/Utility/ValidationTest.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Test/Case/Utility/ValidationTest.php +++ b/lib/Cake/Test/Case/Utility/ValidationTest.php @@ -1965,7 +1965,6 @@ class ValidationTest extends CakeTestCase { $this->asser...
removed duplicate test case ```$this->assertFalse(Validation::money('text'));``` is now tested only once
cakephp_cakephp
train
php
1df10cb12819a35eb99023078d4f0ececc3c8f8d
diff --git a/test/loadings.js b/test/loadings.js index <HASH>..<HASH> 100644 --- a/test/loadings.js +++ b/test/loadings.js @@ -10,8 +10,6 @@ dom.settings.timeout = 900000; dom.settings.stallTimeout = 200; // the value used in the tests dom.settings.console = true; dom.settings.pool.max = 8; -require('http').globalAg...
maxSockets is now infinity by default
kapouer_express-dom
train
js,js
5d84b40bfd8ce3ceafd44d370039930dd72e5ef7
diff --git a/tests/integration/modules/grains.py b/tests/integration/modules/grains.py index <HASH>..<HASH> 100644 --- a/tests/integration/modules/grains.py +++ b/tests/integration/modules/grains.py @@ -142,9 +142,8 @@ class GrainsAppendTestCase(integration.ModuleCase): GRAIN_VAL = 'my-grain-val' def tearDo...
Attempt to fix failing grains tests in <I> The tearDown appears to only be removing the grain if it matches a specific value. This may be leading to the grain value not being blank at the time the next test is run. Instead of only deleting the grain if it matches a specific value, instead delete all items from that g...
saltstack_salt
train
py
ff25e929c9043a5a165d92e5ebecc2bdfacbb2e2
diff --git a/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/controller/DataExplorerController.java b/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/controller/DataExplorerController.java index <HASH>..<HASH> 100644 --- a/molgenis-dataexplorer/src/main/java/org/molgenis/dataexplorer/control...
Fix #<I>: Fileingest does not show "target" anymore
molgenis_molgenis
train
java
4c117b92deff14f9df14898349d9f38f948450fa
diff --git a/tools/otci/otci/otci.py b/tools/otci/otci/otci.py index <HASH>..<HASH> 100644 --- a/tools/otci/otci/otci.py +++ b/tools/otci/otci/otci.py @@ -75,7 +75,7 @@ class OTCI(object): while duration > 0: output = self.__otcmd.wait(1) - if match_line(expect_line, outpu...
[otci] fix OTCI.wait arg order (#<I>) In wait, match_line is called with the arguments flipped. The first argument is supposed to the be the line being checked, and the second is supposed to be the pattern to match. The reason this still works for strings is because output is treated as a list of lines to expect, ...
openthread_openthread
train
py
fd449a5683225eefef442e6a1132e7920de8acd2
diff --git a/cherrypy/_cpengine.py b/cherrypy/_cpengine.py index <HASH>..<HASH> 100644 --- a/cherrypy/_cpengine.py +++ b/cherrypy/_cpengine.py @@ -59,6 +59,8 @@ class Engine(object): self.mtimes = {} self.reload_files = [] + + self.monitor_thread = None def start(se...
Engine.monitor_thread defaults to None now. This is in case an Exception is raised in an on_start_engine function and the code to start/stop the engine is wrapped in a try/finally, where Engine.stop is called in finally.
cherrypy_cheroot
train
py
773b11112275cdf4e4751041b0c18a1b17f9fb99
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -37,5 +37,5 @@ module.exports.setDefaultFormat = function(format) { * Add filter to nunjucks environment */ module.exports.install = function(env, customName) { - env.addFilter(customName || 'date', getFilter()); + ...
Module: Modified getFitler functionality. - removed extra parenthesis otherwise filter does not work when added to nunjucks.
techmsi_nunjucks-date
train
js
c481a3e1f23644fca465439c77ef99d1e744d09b
diff --git a/pyemu/mat/mat_handler.py b/pyemu/mat/mat_handler.py index <HASH>..<HASH> 100644 --- a/pyemu/mat/mat_handler.py +++ b/pyemu/mat/mat_handler.py @@ -1913,7 +1913,7 @@ class Cov(Matrix): def identity_like(cls,other): assert other.shape[0] == other.shape[1] x = np.identity(other.shape[0])...
bug fix in Cov.identity_like(): needs to be isdiagonal=False
jtwhite79_pyemu
train
py
7d3d96e99fea5bed09f081bef1fd1192e66bb421
diff --git a/spotify/models/user.py b/spotify/models/user.py index <HASH>..<HASH> 100644 --- a/spotify/models/user.py +++ b/spotify/models/user.py @@ -71,11 +71,10 @@ class User(URIBase, AsyncIterable): # pylint: disable=too-many-instance-attribu self._refresh_task = None self.__client = self.client ...
bugfix set http and library User attrs to None when http is disabled
mental32_spotify.py
train
py
f169db433dfb4c0eb613929ee24e3b21a3aed191
diff --git a/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java b/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java index <HASH>..<HASH> 100644 --- a/engine/graph/api/src/main/java/org/jboss/windup/graph/dao/JavaClassDao.java +++ b/engine/graph/api/src/main/java/org/jb...
Removed null and use the no-args method
windup_windup
train
java
a485fda6aa2b0e85a448b5277d170269670849cf
diff --git a/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java b/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java index <HASH>..<HASH> 100644 --- a/metrics-core/src/test/java/com/yammer/metrics/core/tests/HistogramTest.java +++ b/metrics-core/src/test/java/com/yammer...
Fixed incorrect assertion label in HistogramTest
dropwizard_metrics
train
java
eadb33ccb4081b478e393e131e868e4197429862
diff --git a/addon/components/docs-keyboard-shortcuts/index.js b/addon/components/docs-keyboard-shortcuts/index.js index <HASH>..<HASH> 100644 --- a/addon/components/docs-keyboard-shortcuts/index.js +++ b/addon/components/docs-keyboard-shortcuts/index.js @@ -22,9 +22,9 @@ export default class DocsKeyboardShortcutsCompo...
avoid using `this.set` (fixes #<I>) (#<I>) Right now, the DocsKeyboardShortcutsComponent attempts to use `this.set` to set a property. DocsKeyboardShortcutsComponent is a Glimmer Component, so this API is not available. To avoid the problem, let's use a regular assignment statement.
ember-learn_ember-cli-addon-docs
train
js
5d827f8b4258ec180226b03886b7b7c0df0f071a
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -101,8 +101,8 @@ async function prerender (parentCompilation, request, options, inject, loader) { }; // Only copy over allowed plugins (excluding them breaks extraction entirely). - const allowedPlugin...
Switch to regex in case the casing was wrong
GoogleChromeLabs_prerender-loader
train
js
9067df96d49474e5403597e1a8f6a7008b6873c8
diff --git a/lib/active_remote/version.rb b/lib/active_remote/version.rb index <HASH>..<HASH> 100644 --- a/lib/active_remote/version.rb +++ b/lib/active_remote/version.rb @@ -1,3 +1,3 @@ module ActiveRemote - VERSION = "0.2.0" + VERSION = "0.2.1" end
Bumped version to <I>
liveh2o_active_remote
train
rb
8a13732171127b86c2fc4b86f2c9a142ad35f605
diff --git a/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java b/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java index <HASH>..<HASH> 100644 --- a/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java +++ b/zen-search/src/main/java/com/nominanuda/solr/SolrHelper.java @@ -112,7 +112,11 @@ ...
configured dot aware paths correctly handled over dyn fields
nominanuda_zen-project
train
java
ef7ec95bd2b6e4bf478d15633d7347470e2e0644
diff --git a/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb b/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb index <HASH>..<HASH> 100644 --- a/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb +++ b/acceptance/setup/packages/pre-suite/015_PackageHostsPresets.rb @@ -1,5 +1,5 ...
(maint) Include fedora as a platform to test with service packages. Fedora had been left out, through no fault of its own, and was being tested without starting and stopping via service scripts.
puppetlabs_puppet
train
rb
dfa46f415e26f8009cced09f2649e1a45979b582
diff --git a/pydot.py b/pydot.py index <HASH>..<HASH> 100644 --- a/pydot.py +++ b/pydot.py @@ -416,7 +416,7 @@ def find_graphviz(): It will look for 'dot', 'twopi' and 'neato' in all the directories specified in the PATH environment variable. - Thirdly: Default install location (Windows only) + Thirdl...
DOC: last method tried to find graphviz is for linux and osx too
pydot_pydot
train
py
b7eac4596849395f47ac5d8fe68a4e8d4177aea9
diff --git a/resources/views/partials/components.blade.php b/resources/views/partials/components.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/partials/components.blade.php +++ b/resources/views/partials/components.blade.php @@ -1,14 +1,14 @@ <ul class="list-group components"> @if($component_groups-...
Call enabled scope on the builder, not the collection
CachetHQ_Cachet
train
php
c07a1367e07b1d45186f91125439af850722dc8f
diff --git a/lib/ember-qunit/test.js b/lib/ember-qunit/test.js index <HASH>..<HASH> 100644 --- a/lib/ember-qunit/test.js +++ b/lib/ember-qunit/test.js @@ -12,6 +12,11 @@ export default function test(testName, callback) { var message; if (reason instanceof Error) { message = reason.stack; + ...
Better exception messages on phantomjs Exceptions on phantomjs have a `stack` property that does not contain the exception message itself. Which causes us to print only the stack without the actual error message. This change ensures that the error message must appear withinn our output. I'm not sure how to test this...
emberjs_ember-qunit
train
js
5aefa1432c312164c2da4f4642ae175b127067ba
diff --git a/parse.go b/parse.go index <HASH>..<HASH> 100644 --- a/parse.go +++ b/parse.go @@ -585,6 +585,11 @@ func (p *parser) readParts(ns *[]Node) { func (p *parser) wordPart() Node { switch { + case p.got(LIT): + return Lit{ + ValuePos: p.lpos, + Value: p.lval, + } case p.peek(DOLLBR): return p....
parse: check for LIT first in wordPart() It's the most basic and very probably most common occurence.
mvdan_sh
train
go
b89209f09933fc895fd57ed4acc8a1bb4504db07
diff --git a/tests/plugins/keyword_test.py b/tests/plugins/keyword_test.py index <HASH>..<HASH> 100644 --- a/tests/plugins/keyword_test.py +++ b/tests/plugins/keyword_test.py @@ -81,6 +81,9 @@ class TestKeywordDetector(object): [ # FOLLOWED_BY_COLON_RE ( + 'private_key ...
Add a few more Keyword negative test-cases
Yelp_detect-secrets
train
py
e6a30f18f106f47a70ef03f9752865956ffbb1c0
diff --git a/test/helper.rb b/test/helper.rb index <HASH>..<HASH> 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -30,7 +30,7 @@ if ActiveRecord::Base.respond_to?(:raise_in_transactional_callbacks=) && Rails.v ActiveRecord::Base.raise_in_transactional_callbacks = true end -ActiveRecord::Base.configurations = ...
Make DB configuration RoR <I> compatible. The configuration does not accept symbols as a keys anymore, since <URL>
rails_rails-observers
train
rb
339aa6fb7b469b806c3279eeef7732bfaca035a5
diff --git a/tests/cases/action/RequestTest.php b/tests/cases/action/RequestTest.php index <HASH>..<HASH> 100644 --- a/tests/cases/action/RequestTest.php +++ b/tests/cases/action/RequestTest.php @@ -1015,7 +1015,10 @@ class RequestTest extends \lithium\test\Unit { $request = new Request(array( 'url' => 'foo/bar'...
Minor fix for a failing Request test when ran from cli
UnionOfRAD_lithium
train
php
9dc16b48bbf44f7089b825d7e772adc292a78352
diff --git a/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java b/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java index <HASH>..<HASH> 100644 --- a/src-setup/org/opencms/setup/comptest/CmsSetupTestServletContainer.java +++ b/src-setup/org/opencms/setup/comptest/CmsSetupTestSer...
Added Tomcat 9 as valid servlet container version in setup wizard.
alkacon_opencms-core
train
java
c91bcf3f23c1065eb3d45a43dbfb5e8895d540e0
diff --git a/lib/binary_parser.js b/lib/binary_parser.js index <HASH>..<HASH> 100644 --- a/lib/binary_parser.js +++ b/lib/binary_parser.js @@ -324,7 +324,7 @@ Object.keys(PRIMITIVE_TYPES).forEach(function(type) { Parser.prototype.generateBit = function(ctx) { ctx.bitFields.push(this); - if (this.next && !thi...
Fixed bug that parser ends with bit parser doesnt work correctly
keichi_binary-parser
train
js
52553e65e9283f5b768b32c70fccdc9a9e188521
diff --git a/tests/units/Client.php b/tests/units/Client.php index <HASH>..<HASH> 100644 --- a/tests/units/Client.php +++ b/tests/units/Client.php @@ -136,13 +136,16 @@ class Client extends \ElasticSearch\tests\Base $secondaryIndex = 'test-index2'; $doc = array('title' => $tag); $options = ar...
Fixes unit testing using an unimplemented fluent api on Client
nervetattoo_elasticsearch
train
php
a05a99915d96a8d8cb18f7c2dad64e6e47756b3e
diff --git a/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java b/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java index <HASH>..<HASH> 100644 --- a/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.java +++ b/h2network/src/test/java/org/h2gis/network/SpatialFunctionTest.ja...
Remove the extra call to ST_Graph (#<I>) I was calling it an extra time when I created the cormen graph, but I don't need the cormen graph for the st_graph tests!
orbisgis_h2gis
train
java
bfdb69ea11aa8476703f151c751cfb3e00c23703
diff --git a/master/buildbot/status/web/change_hook.py b/master/buildbot/status/web/change_hook.py index <HASH>..<HASH> 100644 --- a/master/buildbot/status/web/change_hook.py +++ b/master/buildbot/status/web/change_hook.py @@ -63,8 +63,8 @@ class ChangeHookResource(resource.Resource): except ValueError, err: ...
Better logging of errors from web change hooks. The error message was getting discarded, making debugging impossible.
buildbot_buildbot
train
py
ed5ef396b8ec173125b5ddb57650bd33023eeb48
diff --git a/assess_add_cloud.py b/assess_add_cloud.py index <HASH>..<HASH> 100755 --- a/assess_add_cloud.py +++ b/assess_add_cloud.py @@ -36,11 +36,26 @@ def assess_cloud(client, example_cloud): raise JujuAssertionError('Cloud mismatch') +def iter_clouds(clouds): + for cloud_name, cloud in clouds.items...
Test with <I>-char endpoints.
juju_juju
train
py
d4810b55ba1e56d4616680b5aa0bb9bc2513e76f
diff --git a/src/deploy/lambda/05-upload-zip.js b/src/deploy/lambda/05-upload-zip.js index <HASH>..<HASH> 100644 --- a/src/deploy/lambda/05-upload-zip.js +++ b/src/deploy/lambda/05-upload-zip.js @@ -17,7 +17,8 @@ module.exports = function uploadZip(params, callback) { }, // upload the function function _...
force env var (loaded by utils/init or we fail loudly)
architect_architect
train
js
a553c2124c381050eb5bdfc6f5d978a6ad86756d
diff --git a/medoo.php b/medoo.php index <HASH>..<HASH> 100644 --- a/medoo.php +++ b/medoo.php @@ -589,7 +589,7 @@ class medoo } } - $table_join[] = $join_array[ $match[2] ] . ' JOIN "' . $match[3] . '" ' . (isset($match[5]) ? ' AS "' . $match[5] . '"' : '') . $relation; + $table_join[] = $join_...
[fix] Table joining with alias bug
catfan_Medoo
train
php
b8f6ce3ae2a10377305d01d72e0bffa334af3a30
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -11,7 +11,7 @@ class EmojiFaviconPlugin { compiler.hooks.make.tapAsync( 'EmojiFaviconPlugin', (compilation, callback) => - render(this.emoji, [16, 32, 48]) + render(this.emoji, ...
Render more favicon sizes
trevorblades_emoji-favicon-webpack-plugin
train
js,js
5904ed0ee638b9e97d93105d5d8987f07775d671
diff --git a/bika/lims/content/client.py b/bika/lims/content/client.py index <HASH>..<HASH> 100644 --- a/bika/lims/content/client.py +++ b/bika/lims/content/client.py @@ -105,6 +105,13 @@ class Client(Organisation): def setTitle(self, value): return self.setName(value) + def getClientID(self): + ...
Retrieve ID as ClientID if database has no ClientID
senaite_senaite.core
train
py
66e2016eeb42864ba26918798faa5ec32da2f0c6
diff --git a/models/user.go b/models/user.go index <HASH>..<HASH> 100644 --- a/models/user.go +++ b/models/user.go @@ -629,7 +629,7 @@ func GetUserIdsByNames(names []string) []int64 { // Get all email addresses func GetEmailAddresses(uid int64) ([]*EmailAddress, error) { emails := make([]*EmailAddress, 0, 5) - err ...
Fix for wrong email query Changing EmailAdress.OwnerId to EmailAddress.Uid should have accompanied this change
gogs_gogs
train
go
16fd8dc93ed8808d6e6df6f8b315fcb5c6a38960
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ license: GNU-GPL2 from setuptools import setup setup(name='consoleprinter', - version='32', + version='34', description='Console printer with linenumbers, stacktraces, logging, conversions and...
pip Thursday <I> April <I> (week:<I> day:<I>), <I>:<I>:<I>
erikdejonge_consoleprinter
train
py
83b739e83b275dbdc4bd834e91757374f8dbb819
diff --git a/commands/get.go b/commands/get.go index <HASH>..<HASH> 100644 --- a/commands/get.go +++ b/commands/get.go @@ -7,7 +7,7 @@ import ( ) type GetCommand struct { - SecretIdentifier string `short:"n" long:"name" description:"Selects the secret being set"` + SecretIdentifier string `short:"n" long:"name" des...
Updated help text for `get` [#<I>] CLI user should be able to GET secret value
cloudfoundry-incubator_credhub-cli
train
go
73c76e09d2cf6ab9a4c35460686bb005b9c3c1d4
diff --git a/src/Behat/Mink/Exception/Exception.php b/src/Behat/Mink/Exception/Exception.php index <HASH>..<HASH> 100644 --- a/src/Behat/Mink/Exception/Exception.php +++ b/src/Behat/Mink/Exception/Exception.php @@ -103,7 +103,7 @@ abstract class Exception extends \Exception $driver = basename(str_replace('\\',...
Fix Exception::getResponseInfo with Selenium 2 driver
minkphp_Mink
train
php
25b656e997e449b390a7b545ff2f106205f1b797
diff --git a/forms_builder/forms/admin.py b/forms_builder/forms/admin.py index <HASH>..<HASH> 100644 --- a/forms_builder/forms/admin.py +++ b/forms_builder/forms/admin.py @@ -1,4 +1,3 @@ - from csv import writer from mimetypes import guess_type from os.path import join @@ -130,7 +129,7 @@ class FormAdmin(admin.Model...
Bugfix: Excel export fail for long form titles. Workbook sheets created by xlwt must not contain more than <I> characters (I assume it's a limitation of Excel) - this should fix failing Excel exports for long form titles.
stephenmcd_django-forms-builder
train
py
73d3394ba33974c205b8e75fd2dd6b8cda9ba055
diff --git a/sphinx/docserver.py b/sphinx/docserver.py index <HASH>..<HASH> 100644 --- a/sphinx/docserver.py +++ b/sphinx/docserver.py @@ -54,7 +54,7 @@ def shutdown_server(): def ui(): time.sleep(0.5) - input("Press any key to exit...") + input("Press <ENTER> to exit...\n") if __name__ == "__main__"...
Changed docserver shutdown instruction. (#<I>)
bokeh_bokeh
train
py
21c4ea51fc21f3a42aa428b4d8f1c4107748884d
diff --git a/lib/crawler.js b/lib/crawler.js index <HASH>..<HASH> 100644 --- a/lib/crawler.js +++ b/lib/crawler.js @@ -306,7 +306,7 @@ var Crawler = function(initialURL) { /** * Collection of regular expressions and functions that are applied in the - * default {@link Crawler#discoverRegex} method. + ...
Fixed errant reference to discoverResources method in inline docs
simplecrawler_simplecrawler
train
js