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
c331bed3b9489871f66ceafeb0c808fa30c36ee0
diff --git a/lib/Psc/Code/Test/CSSTester.php b/lib/Psc/Code/Test/CSSTester.php index <HASH>..<HASH> 100644 --- a/lib/Psc/Code/Test/CSSTester.php +++ b/lib/Psc/Code/Test/CSSTester.php @@ -116,10 +116,10 @@ class CSSTester extends \Psc\SimpleObject implements HTMLInterface { return $this; } - public function t...
add verbose for text constraint method in css tester
webforge-labs_psc-cms
train
php
826414a9835ee345413920f85a8cec9a18ba3fa7
diff --git a/cassandra-unit/src/main/java/org/cassandraunit/utils/EmbeddedCassandraServerHelper.java b/cassandra-unit/src/main/java/org/cassandraunit/utils/EmbeddedCassandraServerHelper.java index <HASH>..<HASH> 100644 --- a/cassandra-unit/src/main/java/org/cassandraunit/utils/EmbeddedCassandraServerHelper.java +++ b/c...
Fixing a typo in the logging message
jsevellec_cassandra-unit
train
java
9a9f59fcc6e7b93465ce9848b52a473477dff64a
diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Database/Eloquent/Model.php +++ b/src/Illuminate/Database/Eloquent/Model.php @@ -990,6 +990,16 @@ abstract class Model implements Arrayable, ArrayAccess, Jsonable, JsonSe...
refactor: extract attribute getter for insert.
laravel_framework
train
php
9b6ba703bd1ac4f0cb10295db1d14eceff2841e0
diff --git a/test/org/mockito/usage/verification/NiceMessagesWhenVerificationFailsTest.java b/test/org/mockito/usage/verification/NiceMessagesWhenVerificationFailsTest.java index <HASH>..<HASH> 100644 --- a/test/org/mockito/usage/verification/NiceMessagesWhenVerificationFailsTest.java +++ b/test/org/mockito/usage/verif...
added one test (and removed one TODO :) --HG-- extra : convert_revision : svn%3Aaa2aecf3-ea3e-<I>-9d<I>-<I>e7c<I>/trunk%<I>
mockito_mockito
train
java
29f118e27ff96f0ac5fe10ef70390977af5c2fca
diff --git a/lib/ddr/models/version.rb b/lib/ddr/models/version.rb index <HASH>..<HASH> 100644 --- a/lib/ddr/models/version.rb +++ b/lib/ddr/models/version.rb @@ -1,5 +1,5 @@ module Ddr module Models - VERSION = "1.2.0" + VERSION = "1.2.0.post" end end
Bumped version to <I>.post
duke-libraries_ddr-models
train
rb
405d60d99af1a043c993a3706a7ca20c31edbb23
diff --git a/molo/core/cookiecutter/scaffold/{{cookiecutter.directory}}/{{cookiecutter.app_name}}/views.py b/molo/core/cookiecutter/scaffold/{{cookiecutter.directory}}/{{cookiecutter.app_name}}/views.py index <HASH>..<HASH> 100644 --- a/molo/core/cookiecutter/scaffold/{{cookiecutter.directory}}/{{cookiecutter.app_name}...
Ensure only superuser can access upload/download functionality
praekeltfoundation_molo
train
py
db9b0daed927b04d6c5c37d411b5bb4405888667
diff --git a/src/HasRelationships.php b/src/HasRelationships.php index <HASH>..<HASH> 100644 --- a/src/HasRelationships.php +++ b/src/HasRelationships.php @@ -102,7 +102,9 @@ trait HasRelationships $segments = preg_split('/\s+as\s+/i', $class); $instance = Str::contains($segments[0], '\\') -...
Use the `newRelatedThroughInstance` method to prepare the through parents (#<I>) * use `newRelatedThroughInstance` method * check if method exists to support older versions
staudenmeir_eloquent-has-many-deep
train
php
016c2b0741bf7aa482e8402b006a32bddd027aab
diff --git a/amqp/rabbitmq.go b/amqp/rabbitmq.go index <HASH>..<HASH> 100644 --- a/amqp/rabbitmq.go +++ b/amqp/rabbitmq.go @@ -68,7 +68,7 @@ func (r *rabbitmqQ) Pub(msg []byte) error { ); err != nil { return fmt.Errorf("Failed to publish message in exchange: %s", err) } - log.Debug("[amqp] pub SUCCESS.") + log.D...
log pub msg has an exchange name as >%s<
megamsys_libgo
train
go
7ddb7b9aeb91699b3517a7a8f82a00377cd86e3e
diff --git a/tpot/tpot.py b/tpot/tpot.py index <HASH>..<HASH> 100644 --- a/tpot/tpot.py +++ b/tpot/tpot.py @@ -192,10 +192,10 @@ class TPOT(object): self._pset.addTerminal(val, int) float_terminals = np.concatenate(( - [1e-6, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1], - np.linspace(0.,...
Clean up float terminals Some were duplicates.
EpistasisLab_tpot
train
py
fd6b0c29a7da7e8d0b1dc20d3dff58e51329110d
diff --git a/threadloop/threadloop.py b/threadloop/threadloop.py index <HASH>..<HASH> 100644 --- a/threadloop/threadloop.py +++ b/threadloop/threadloop.py @@ -7,6 +7,10 @@ from tornado import ioloop from .exceptions import ThreadNotStartedError +# Python3's concurrent.futures.Future doesn't allow +# setting exc_in...
exception propagation should work with python2 and python3
breerly_threadloop
train
py
4f730c75441eeea183bcb196a7c3a4a15cf95138
diff --git a/code/VersionedFileExtension.php b/code/VersionedFileExtension.php index <HASH>..<HASH> 100644 --- a/code/VersionedFileExtension.php +++ b/code/VersionedFileExtension.php @@ -7,15 +7,8 @@ */ class VersionedFileExtension extends DataExtension { - /** - * @return array - */ - public function extraStati...
removed extraStatics method from VersionedFileExtension, just use static vars
symbiote_silverstripe-versionedfiles
train
php
aaec47af3ab5ae0059f8a330fa2893b805dbe78d
diff --git a/src/CompilerContext.php b/src/CompilerContext.php index <HASH>..<HASH> 100644 --- a/src/CompilerContext.php +++ b/src/CompilerContext.php @@ -429,7 +429,7 @@ class CompilerContext if(!$serviceManager) { if(($f = $this->getValueCache()->fetchValue("main-config")) && ($p = $this->getVal...
FIX: Add final service manager to context
tasoftch_skyline-compiler
train
php
a450dc7f91cde674197331c87dd4cfdba24b6947
diff --git a/server/etcdserver/bootstrap.go b/server/etcdserver/bootstrap.go index <HASH>..<HASH> 100644 --- a/server/etcdserver/bootstrap.go +++ b/server/etcdserver/bootstrap.go @@ -532,7 +532,7 @@ func bootstrapWALFromSnapshot(cfg config.ServerConfig, snapshot *raftpb.Snapshot if cfg.ForceNewCluster { // discard...
server: Rename function to NewConfigChangeEntries indicating we are not reading it from wal
etcd-io_etcd
train
go
886fc24f12cefd1aaa235cce393fc91aaebf8cb9
diff --git a/src/openaccess_epub/quickstart.py b/src/openaccess_epub/quickstart.py index <HASH>..<HASH> 100644 --- a/src/openaccess_epub/quickstart.py +++ b/src/openaccess_epub/quickstart.py @@ -33,7 +33,7 @@ import os.path import sys import logging -quickstart_version = 0.0.1 +quickstart_version = '0.0.1' # oae...
made quickstart_version a string, as it should be
SavinaRoja_OpenAccess_EPUB
train
py
121406da8cf5fb5edd22aeeee100db979476ea51
diff --git a/worker/migrationmaster/worker.go b/worker/migrationmaster/worker.go index <HASH>..<HASH> 100644 --- a/worker/migrationmaster/worker.go +++ b/worker/migrationmaster/worker.go @@ -256,6 +256,10 @@ func (w *Worker) setInfoStatus(s string, a ...interface{}) { w.setStatusAndLog(w.logger.Infof, s, a...) } +...
worker/migrationmaster: Tweaked a log level Not being able to remove a model from the target controller isn't fatal and is expected in some cases.
juju_juju
train
go
0710456c29c2b2da16b08df36b6a357fa6377e28
diff --git a/hszinc/parser.py b/hszinc/parser.py index <HASH>..<HASH> 100644 --- a/hszinc/parser.py +++ b/hszinc/parser.py @@ -46,8 +46,15 @@ def parse(grid_str, mode=MODE_ZINC): # them up normally. This will truncate the newline off the end of the last # row. _parse = functools.partial(parse_grid, mode...
parser: Handle both singular grids and multi-grids in JSON Multi-grid format in JSON is not specified, but one can guess.
vrtsystems_hszinc
train
py
43e3febb23b2eeacb5c128a6e0aab9408780e63b
diff --git a/course/unenrol.php b/course/unenrol.php index <HASH>..<HASH> 100644 --- a/course/unenrol.php +++ b/course/unenrol.php @@ -25,7 +25,6 @@ print_error('cantunenrollfrommetacourse'); } else { require_capability('moodle/role:unassignself', $context, NULL, false); -function has_capability(...
Delete what I assume is a bogus line.
moodle_moodle
train
php
95e0164057acf4d4b57c8630f5a5ad0e709eae79
diff --git a/lib/neo4j/rails/persistence.rb b/lib/neo4j/rails/persistence.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j/rails/persistence.rb +++ b/lib/neo4j/rails/persistence.rb @@ -117,7 +117,7 @@ module Neo4j props = args.first raise "Can't get or create entity since #{props.inspect} does not i...
get_or_create should returned a wrapped node, closes #<I>
neo4jrb_neo4j
train
rb
fa11a998a4a0c393933c753d0d7b48243937ca05
diff --git a/src/js/libpannellum.js b/src/js/libpannellum.js index <HASH>..<HASH> 100644 --- a/src/js/libpannellum.js +++ b/src/js/libpannellum.js @@ -749,7 +749,6 @@ function Renderer(container, context) { * @param {Object} [params] - Extra configuration parameters. * @param {number} [params.roll] - Camer...
Remove renderer pre-execution hook. It was added in <I>fb<I>bf8faee<I>f<I>dea5cc<I>a<I>de1, but needs more work.
mpetroff_pannellum
train
js
85172242fed19641831db00db2b685aebd53a005
diff --git a/src/Charcoal/Cms/ServiceProvider/CmsServiceProvider.php b/src/Charcoal/Cms/ServiceProvider/CmsServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/Cms/ServiceProvider/CmsServiceProvider.php +++ b/src/Charcoal/Cms/ServiceProvider/CmsServiceProvider.php @@ -210,6 +210,9 @@ class CmsServiceProvi...
Pass lifespan to eventLoader
locomotivemtl_charcoal-cms
train
php
ee3c73fbb76bb51a32a747c97cade86b0f008f88
diff --git a/src/Maker/MakeEntity.php b/src/Maker/MakeEntity.php index <HASH>..<HASH> 100644 --- a/src/Maker/MakeEntity.php +++ b/src/Maker/MakeEntity.php @@ -364,7 +364,7 @@ final class MakeEntity extends AbstractMaker $data['precision'] = $io->ask('Precision (total number of digits stored: 100.00 would b...
Decimal Type: Fix small typo Scale value currently overwrites the previously entered precision value.
symfony_maker-bundle
train
php
0e20ecb7d1e34c57219c73844db0ad0461bc9395
diff --git a/packages/react-server-cli/src/compileClient.js b/packages/react-server-cli/src/compileClient.js index <HASH>..<HASH> 100644 --- a/packages/react-server-cli/src/compileClient.js +++ b/packages/react-server-cli/src/compileClient.js @@ -174,7 +174,7 @@ module.exports = { } routesOutput.push(` }, - ...
Fix a silly syntax error of the generated routes file that I made when refactoring.
redfin_react-server
train
js
4dbfb8798cc43a135fa78ac385c17bdefd5e5bb3
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -2,9 +2,12 @@ // Load modules +const util = require('util'); const Wreck = require('@hapi/wreck'); const OrPromise = require('or-promise'); +// Custom variant of promises for setImmediate, see https://...
Migrate setImmediate to promises / async/await
joyent_node-consulite
train
js
3e976b43a28f2cdf05609cff9f069f9dbdb80f49
diff --git a/lib/yt/request.rb b/lib/yt/request.rb index <HASH>..<HASH> 100644 --- a/lib/yt/request.rb +++ b/lib/yt/request.rb @@ -269,7 +269,7 @@ module Yt # @return [Boolean] whether the request exceeds the YouTube quota def exceeded_quota? - response_error == Errors::Forbidden && response.body =~ /E...
Make regex to catch 'Exceeded' response errors to be case insensitive
Fullscreen_yt
train
rb
770d2cc8ebfaf5a66b2dd95b466b438f077a4d4a
diff --git a/views/js/controller/creator/main.js b/views/js/controller/creator/main.js index <HASH>..<HASH> 100755 --- a/views/js/controller/creator/main.js +++ b/views/js/controller/creator/main.js @@ -22,7 +22,7 @@ define([ 'async', 'core/promise', 'history', - 'layout/actions', + 'uri', 'la...
History API usage replaced in favor of direct section API usage to prevent item-status locking
oat-sa_extension-tao-itemqti
train
js
5f973272def613827e164c06e948ca8e7ae2bc34
diff --git a/presto-cassandra/src/main/java/com/facebook/presto/cassandra/CassandraRecordSetProvider.java b/presto-cassandra/src/main/java/com/facebook/presto/cassandra/CassandraRecordSetProvider.java index <HASH>..<HASH> 100644 --- a/presto-cassandra/src/main/java/com/facebook/presto/cassandra/CassandraRecordSetProvid...
Fix initializing logger with wrong class
prestodb_presto
train
java
a4f77c04004641f892b00653b949a8df476e5cdc
diff --git a/lib/messaging/stream_name.rb b/lib/messaging/stream_name.rb index <HASH>..<HASH> 100644 --- a/lib/messaging/stream_name.rb +++ b/lib/messaging/stream_name.rb @@ -17,7 +17,7 @@ module Messaging def category_macro(category) category = Casing::Camel.(category, symbol_to_string: true) ...
Category method is nil coalescing
eventide-project_messaging
train
rb
a14c827f497e9dfcff2ba8e343560c3e736354fa
diff --git a/chef/lib/chef/provider.rb b/chef/lib/chef/provider.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/provider.rb +++ b/chef/lib/chef/provider.rb @@ -97,7 +97,7 @@ class Chef if whyrun_supported? load_current_resource else - converge_by("bypassing load current resource, why no...
Make bypass messages a little prettier.
chef_chef
train
rb
97b57b4765fbae3b973ed52eca18975bc597bbd6
diff --git a/lib/resque/pool/pooled_worker.rb b/lib/resque/pool/pooled_worker.rb index <HASH>..<HASH> 100644 --- a/lib/resque/pool/pooled_worker.rb +++ b/lib/resque/pool/pooled_worker.rb @@ -12,7 +12,7 @@ class Resque::Pool end # this allows us to shutdown - def shutdown + def shutdown? @shutdo...
Fixed bug in PooledWorker. `Worker#shutdown` was already used (for something different), using `Worker#shutdown?` instead.
nevans_resque-pool
train
rb
c7f2f4ff9468a1c4e801a5a831ee57a1eedb77ef
diff --git a/languagetool-language-modules/de/src/main/java/org/languagetool/rules/de/GermanStyleRepeatedWordRule.java b/languagetool-language-modules/de/src/main/java/org/languagetool/rules/de/GermanStyleRepeatedWordRule.java index <HASH>..<HASH> 100644 --- a/languagetool-language-modules/de/src/main/java/org/language...
[DE] GermanStyleRepeatedWordRule: solves issue #<I>
languagetool-org_languagetool
train
java
d88a54fe1399e8dcb4670a67052816c042b59ef9
diff --git a/npm/builder.js b/npm/builder.js index <HASH>..<HASH> 100644 --- a/npm/builder.js +++ b/npm/builder.js @@ -206,7 +206,7 @@ Builder.prototype.completeRelease = function (releasePushed, releaseVersion, cal if (!releasePushed) { log.info('[ ] push changes upstream: `git push origin master && git push o...
:construction_worker: Fix release page URL in the release task
asciidoctor_asciidoctor.js
train
js
bd8e413d25e28cbb6a846a55cce0508dd6a2abab
diff --git a/lib/sem4r/targeting_idea/targeting_idea_selector.rb b/lib/sem4r/targeting_idea/targeting_idea_selector.rb index <HASH>..<HASH> 100644 --- a/lib/sem4r/targeting_idea/targeting_idea_selector.rb +++ b/lib/sem4r/targeting_idea/targeting_idea_selector.rb @@ -29,9 +29,6 @@ module Sem4r g_accessor :text ...
Added in extended options for TargetingIdeaSelector.
26fe_sem4r
train
rb
ff3454bbb6237d217500d49618776f64f8e03363
diff --git a/lib/assets/javascripts/autocomplete-rails-uncompressed.js b/lib/assets/javascripts/autocomplete-rails-uncompressed.js index <HASH>..<HASH> 100644 --- a/lib/assets/javascripts/autocomplete-rails-uncompressed.js +++ b/lib/assets/javascripts/autocomplete-rails-uncompressed.js @@ -24,7 +24,7 @@ } }...
Fix selector bug: There are cases, when this.selector is undefined. If this is Google Chrome -- it will ignore this wrong selector; If this is Mozilla Firefox - it will bind rails autocomplete to each element on the page
risuiowa_rails-jquery-autocomplete
train
js
6767d6310401f5eac35a159a03354e80f902e84a
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100755 --- a/lib/index.js +++ b/lib/index.js @@ -81,7 +81,7 @@ function maskType(type, fn) { const fields = type.getFields(); for (const fieldName in fields) { - if (!fields.hasOwnProperty(fieldName)) { + if (!Object.hasOwnProperty.call(fields,...
Fix `hasOwnProperty` - fixes invalid call to `hasOwnProperty` on objects that don't have a prototype
kadirahq_graphql-errors
train
js
02a0b41ceb271929abbea65be084bb173fa1c93b
diff --git a/flashGate.js b/flashGate.js index <HASH>..<HASH> 100644 --- a/flashGate.js +++ b/flashGate.js @@ -6,7 +6,7 @@ sb.include('swf'); sb.flashGate = new sb.swf({ - src : sb.base+"/FlashGate.swf", + src : sb.base+"FlashGate.swf", //src : '${swf}.swf?d='+Math.random(), width : 1, height : 1,
removed ending / from flashGate load
surebert_surebert-framework
train
js
9d9d2d01365c88c778fd28d458d7551e14bc1170
diff --git a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterView.java b/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterView.java index <HASH>..<HASH> 100644 --- a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterView.jav...
Use ACTION_GET_CONTENT, instead of ACTION_PICK when attaching files. This is a better user experience. AND-<I>
apptentive_apptentive-android
train
java
46d09a30f14a66c9eae1dba8caa51ccd76bff551
diff --git a/src/Phpbb/TranslationValidator/Validator/LangKeyValidator.php b/src/Phpbb/TranslationValidator/Validator/LangKeyValidator.php index <HASH>..<HASH> 100644 --- a/src/Phpbb/TranslationValidator/Validator/LangKeyValidator.php +++ b/src/Phpbb/TranslationValidator/Validator/LangKeyValidator.php @@ -606,9 +606,6 ...
Handle html tag in PP and ToU
phpbb_phpbb-translation-validator
train
php
bcac8c64bd9a1622f8ff0dd126c7ebfe156c098c
diff --git a/helper/schema/schema_test.go b/helper/schema/schema_test.go index <HASH>..<HASH> 100644 --- a/helper/schema/schema_test.go +++ b/helper/schema/schema_test.go @@ -1769,6 +1769,36 @@ func TestSchemaMap_Diff(t *testing.T) { Err: false, }, + + // #46 - Float + { + Schema: map[string]*Schema{ + ...
failing schema diff test for TypeFloat refs #<I>
hashicorp_terraform
train
go
2e3d73f673a107e3f1b873b1ad789af81425f3ab
diff --git a/hazelcast/src/test/java/com/hazelcast/config/InvalidConfigurationTest.java b/hazelcast/src/test/java/com/hazelcast/config/InvalidConfigurationTest.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/test/java/com/hazelcast/config/InvalidConfigurationTest.java +++ b/hazelcast/src/test/java/com/hazelcast/co...
Fixes spurious failing configuration test (don't make such tests non deterministic)
hazelcast_hazelcast
train
java
c044d276b38e565a96d7b3d035046ad3ab4f4bfe
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import os +import PIL import pytest from sigal.settings import read_settings @@ -12,3 +13,7 @@ CURRENT_DIR = os.path.abspath(os.path.dirname(__fi...
Show Pillow version in the tests header
saimn_sigal
train
py
75df8917e4df2eb510ca14c02e65ae052aeb7c89
diff --git a/src/Users/DoctrineUserRepository.php b/src/Users/DoctrineUserRepository.php index <HASH>..<HASH> 100644 --- a/src/Users/DoctrineUserRepository.php +++ b/src/Users/DoctrineUserRepository.php @@ -262,11 +262,12 @@ abstract class DoctrineUserRepository extends EntityRepository implements UserRe if (array_k...
Reverted back to known ground on parameters setup.
digbang_security
train
php
e492a23f98ea2d3edd13d390e009c08c15b31753
diff --git a/asn1crypto/core.py b/asn1crypto/core.py index <HASH>..<HASH> 100644 --- a/asn1crypto/core.py +++ b/asn1crypto/core.py @@ -1982,8 +1982,7 @@ class IntegerOctetString(Primitive): )) self._native = value - # Set the unused bits to 0 - self.contents = int_to_bytes(value, s...
core.IntegerOctetString is for positive values only
wbond_asn1crypto
train
py
4938bae9c259c6549e1750aab65727701c97b545
diff --git a/src/style_manager/index.js b/src/style_manager/index.js index <HASH>..<HASH> 100644 --- a/src/style_manager/index.js +++ b/src/style_manager/index.js @@ -253,13 +253,9 @@ module.exports = () => { const em = c.em; if (em && classes && classes.length) { - const emConfig = em.get('Confi...
Make use of `getCurrentMedia` in `getModelToStyle`
artf_grapesjs
train
js
2a5cd0f894be22da0e3e429a6b7d7bf3f6713ad7
diff --git a/openfisca_core/scripts/xml_to_json/xml_to_json.py b/openfisca_core/scripts/xml_to_json/xml_to_json.py index <HASH>..<HASH> 100644 --- a/openfisca_core/scripts/xml_to_json/xml_to_json.py +++ b/openfisca_core/scripts/xml_to_json/xml_to_json.py @@ -17,7 +17,6 @@ from ...legislations import node_keywords # Lo...
The 1st XML file is not special in xml_to_json.py
openfisca_openfisca-core
train
py
6590cccacf0b8be0b6a80b1db591a1031e895a27
diff --git a/lib/right_api_client/version.rb b/lib/right_api_client/version.rb index <HASH>..<HASH> 100644 --- a/lib/right_api_client/version.rb +++ b/lib/right_api_client/version.rb @@ -2,7 +2,7 @@ module RightApi class Client VERSION = File.read(File.expand_path('../../../VERSION', __FILE__)).strip - ...
Disassociate api version number from gem version number
rightscale_right_api_client
train
rb
84854a7bc7e222f1629499a2a3b63b935045b886
diff --git a/django_cron/backends/lock/cache.py b/django_cron/backends/lock/cache.py index <HASH>..<HASH> 100644 --- a/django_cron/backends/lock/cache.py +++ b/django_cron/backends/lock/cache.py @@ -57,10 +57,7 @@ class CacheLock(DjangoCronJobLock): Gets a specified cache (or the `default` cache if CRON_CACHE ...
return use of CRON_CACHE config variable. Need to commit it in a separate commits bunch.
Tivix_django-cron
train
py
99e2978fd075b90ad4fd211a06d8a56dd0022d2e
diff --git a/core/common/src/test/java/alluxio/resource/DynamicResourcePoolTest.java b/core/common/src/test/java/alluxio/resource/DynamicResourcePoolTest.java index <HASH>..<HASH> 100644 --- a/core/common/src/test/java/alluxio/resource/DynamicResourcePoolTest.java +++ b/core/common/src/test/java/alluxio/resource/Dynami...
UnHealhyResource should be UnhealthyResource
Alluxio_alluxio
train
java
b226e3302b875f4b8b2c2a0b55a02ee67117cded
diff --git a/tests/index.php b/tests/index.php index <HASH>..<HASH> 100644 --- a/tests/index.php +++ b/tests/index.php @@ -25,7 +25,7 @@ $upload->withAllowedExtensions([ 'jpeg', 'jpg', 'png', 'gif' ]); $upload->withTargetDirectory(__DIR__ . '/../uploads'); if (mt_rand(1, 100) <= 50) { - $upload->withTargetFilename(...
Change alternative file name used at random times in 'tests'
delight-im_PHP-FileUpload
train
php
54047ac8ecae1134aed2ec519fa45b2d39d1d23c
diff --git a/src/Generator.php b/src/Generator.php index <HASH>..<HASH> 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -16,9 +16,9 @@ abstract class Generator */ private $compiler; - public function __construct(?Compiler $compiler = null) + public function __construct() { - $th...
Always instantiate the container compiler Since `Compiler` is a final class, not an extension point, and that we don't need to reuse instances at all there's no need to allow injection here.
lcobucci_di-builder
train
php,php
877cc5ebddc1191a6d721528b57a5df1038ca4c7
diff --git a/core-bundle/src/Resources/contao/drivers/DC_Table.php b/core-bundle/src/Resources/contao/drivers/DC_Table.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/drivers/DC_Table.php +++ b/core-bundle/src/Resources/contao/drivers/DC_Table.php @@ -4264,7 +4264,7 @@ class DC_Table extends \Dat...
[Core] Respect the `notSortable` flag in the parent (see #<I>).
contao_contao
train
php
10a0d4dd795c5262b945a02eaf500d51caf08a53
diff --git a/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js b/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor.js +++ b/bundles/org.eclipse.orion.client.editor/web/orion/editor/editor....
Bug <I> - Editor is missing rulers after removing and recreating the text view
eclipse_orion.client
train
js
38bed172137839f0951738f64f7ea9680bb0add5
diff --git a/zapcli/cli.py b/zapcli/cli.py index <HASH>..<HASH> 100644 --- a/zapcli/cli.py +++ b/zapcli/cli.py @@ -181,6 +181,8 @@ def show_alerts(zap_helper, alert_level, output_format, exit_code): @click.option('--start-options', '-o', type=str, help='Extra options to pass to the ZAP start command whe...
Added JSON output format ability to quick-scan.
Grunny_zap-cli
train
py
66ec93e6946ca7576893876fbbe937d812692e4a
diff --git a/cms_lab_carousel/admin.py b/cms_lab_carousel/admin.py index <HASH>..<HASH> 100644 --- a/cms_lab_carousel/admin.py +++ b/cms_lab_carousel/admin.py @@ -104,6 +104,7 @@ class SlideAdmin(admin.ModelAdmin): list_display = ['title', 'carousel', 'publish_slide', 'publish_datetime' ] list_filter = [Car...
Add save buttons to top of Slide admin
mfcovington_djangocms-lab-carousel
train
py
195c8f7a74d054f8e41ba1a56a094df7fbece7fa
diff --git a/datasift/client.py b/datasift/client.py index <HASH>..<HASH> 100644 --- a/datasift/client.py +++ b/datasift/client.py @@ -43,6 +43,10 @@ class Client(object): :type timeout: float :param verify: (optional) whether to verify SSL certificates :type verify: bool + :param api_...
Updated comments / doc strings
datasift_datasift-python
train
py
1e7a16c596dd59f3554ccd76cba9658f16d3b417
diff --git a/src/components/calendar/Calendar.js b/src/components/calendar/Calendar.js index <HASH>..<HASH> 100644 --- a/src/components/calendar/Calendar.js +++ b/src/components/calendar/Calendar.js @@ -2585,9 +2585,9 @@ export class Calendar extends Component { } renderDayNames(weekDays) { - const d...
Improve key property on Calendar(#<I>) If an language uses the dayNamesMin with single characters it causes an error of key list. Fixed using the index insted of the value.
primefaces_primereact
train
js
41a18fea3b5cb42b19fc33cbdfe2e5e5437ba633
diff --git a/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Palette.php b/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Palette.php index <HASH>..<HASH> 100644 --- a/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Palette.php +++ b/system/modules/generalDriver/DcGeneral/Data...
Allow propertyBag in Palette::getProperties() also to be null.
contao-community-alliance_dc-general
train
php,php
57ec2ff915f7e5b9218d149bde86cfdd550c3710
diff --git a/internal/model/rwfolder.go b/internal/model/rwfolder.go index <HASH>..<HASH> 100644 --- a/internal/model/rwfolder.go +++ b/internal/model/rwfolder.go @@ -1246,5 +1246,13 @@ func moveForConflict(name string) error { ext := filepath.Ext(name) withoutExt := name[:len(name)-len(ext)] newName := withoutEx...
Handle conflict with local delete (fixes #<I>)
syncthing_syncthing
train
go
66e4e8f63f86e87c5b1eeda3bdbde3833f59fcfb
diff --git a/src/DoctrineMongoODMModule/Module.php b/src/DoctrineMongoODMModule/Module.php index <HASH>..<HASH> 100644 --- a/src/DoctrineMongoODMModule/Module.php +++ b/src/DoctrineMongoODMModule/Module.php @@ -89,7 +89,7 @@ class Module implements new \Doctrine\ODM\MongoDB\Tools\Console\Command\Schema\Dro...
Don't need the '&' there since the commands are references
doctrine_DoctrineMongoODMModule
train
php
abe5b936c067d6fdfb3bc774cb96927732707c9c
diff --git a/src/models.py b/src/models.py index <HASH>..<HASH> 100644 --- a/src/models.py +++ b/src/models.py @@ -174,7 +174,7 @@ class AlgoliaIndex(object): # Should not index, but since we don't now the state of the # instance, we need to send a DELETE request to ensure that if ...
Fix wrong method call Delete call fails due to wrong arguments passed in the method call
algolia_algoliasearch-django
train
py
7adeded225c89829a7a31d3c6af7a888d8ca55ff
diff --git a/Resources/public/js/c4g-layer-controller.js b/Resources/public/js/c4g-layer-controller.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/c4g-layer-controller.js +++ b/Resources/public/js/c4g-layer-controller.js @@ -792,7 +792,7 @@ export class BetterLayerController { return false; ...
prevent missing coordinates from crashing starboard
Kuestenschmiede_MapsBundle
train
js
66fcae581b785c39bb281f76db257b05aba82065
diff --git a/jbehave-core/src/test/java/org/jbehave/core/embedder/MetaFilterBehaviour.java b/jbehave-core/src/test/java/org/jbehave/core/embedder/MetaFilterBehaviour.java index <HASH>..<HASH> 100755 --- a/jbehave-core/src/test/java/org/jbehave/core/embedder/MetaFilterBehaviour.java +++ b/jbehave-core/src/test/java/org/...
another test permutation for the groovy filter
jbehave_jbehave-core
train
java
5b275c56bfb6bcaba53e5a7cb8ae27158ddb536d
diff --git a/pkg/cmd/server/origin/auth.go b/pkg/cmd/server/origin/auth.go index <HASH>..<HASH> 100644 --- a/pkg/cmd/server/origin/auth.go +++ b/pkg/cmd/server/origin/auth.go @@ -232,13 +232,17 @@ func CreateOrUpdateDefaultOAuthClients(masterPublicAddr string, assetPublicAddre // Update the existing resource versio...
Ensure CLI OAuth client always has a single redirect_uri
openshift_origin
train
go
fc4b3a8d697de50fbf1f0fbc343e295542620301
diff --git a/mutagen/_vorbis.py b/mutagen/_vorbis.py index <HASH>..<HASH> 100644 --- a/mutagen/_vorbis.py +++ b/mutagen/_vorbis.py @@ -127,7 +127,7 @@ class VComment(mutagen.Metadata, list): tag = tag.decode("ascii") if is_valid_key(tag): self.appen...
_vorbis.py: replaced call to 'ord' with bytearray
quodlibet_mutagen
train
py
a094681dae903b0b4ae16af6ef668088529d64bf
diff --git a/routing/router.go b/routing/router.go index <HASH>..<HASH> 100644 --- a/routing/router.go +++ b/routing/router.go @@ -384,8 +384,10 @@ func (r *ChannelRouter) networkHandler() { // for this height, if so, then we process them once // more as normal announcements. prematureAnns := r.prematureAnn...
routing: only log pre-mature announcements if we have any
lightningnetwork_lnd
train
go
df756131a6c4986ec4ba6d998e4856960062f079
diff --git a/pylatex/document.py b/pylatex/document.py index <HASH>..<HASH> 100644 --- a/pylatex/document.py +++ b/pylatex/document.py @@ -238,7 +238,7 @@ class Document(Environment): # Try latexmk cleaning first subprocess.check_output(['latexmk', '-c', basename], ...
Added error type to catch when cleaning after compilation to avoid error if latexmk is not installed/perl is not installed (Windows)
JelteF_PyLaTeX
train
py
fbcb4b8b269fb0a7f7f87444f7b8e6b1c5515e68
diff --git a/lib/locman/manager.rb b/lib/locman/manager.rb index <HASH>..<HASH> 100644 --- a/lib/locman/manager.rb +++ b/lib/locman/manager.rb @@ -71,7 +71,7 @@ module Locman # Sets whether location should be updated on the background or not. def background=(background) - if !background.is_a?(TrueClass...
Fix conditional statement on Manager#background=
premist_motion-locman
train
rb
daee706c92966cc9ba6bff1b4199d52fd58a5584
diff --git a/datatableview/views.py b/datatableview/views.py index <HASH>..<HASH> 100644 --- a/datatableview/views.py +++ b/datatableview/views.py @@ -271,7 +271,7 @@ class DatatableMixin(MultipleObjectMixin): """ - return DatatableStructure(self.request.path, self.model, self._get_d...
Um... This must have been left behind from a previous commit.
pivotal-energy-solutions_django-datatable-view
train
py
c6f50d316d287affa07ee6c5d5fd3167673202e3
diff --git a/lib/rspec_sequel/validation.rb b/lib/rspec_sequel/validation.rb index <HASH>..<HASH> 100644 --- a/lib/rspec_sequel/validation.rb +++ b/lib/rspec_sequel/validation.rb @@ -44,7 +44,7 @@ module RspecSequel called_count = 0 i = i.dup i.class.columns # ensure colums are read again after .du...
Fix implementation It would not properly stub validation methods
openhood_rspec_sequel_matchers
train
rb
66435596b26e02428dbe18882d947f61c5b37005
diff --git a/grimoire_elk/enriched/twitter.py b/grimoire_elk/enriched/twitter.py index <HASH>..<HASH> 100644 --- a/grimoire_elk/enriched/twitter.py +++ b/grimoire_elk/enriched/twitter.py @@ -43,31 +43,17 @@ class Mapping(BaseMapping): :returns: dictionary with a key, 'items', with the mapping "...
[twitter] Remove ES 2.x mappings This code removes the mappings for the enriched index.
chaoss_grimoirelab-elk
train
py
e78e508d34d563c1e3b90fe095843f36bc711051
diff --git a/lib/private_pub/view_helpers.rb b/lib/private_pub/view_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/private_pub/view_helpers.rb +++ b/lib/private_pub/view_helpers.rb @@ -15,7 +15,7 @@ module PrivatePub def subscribe_to(channel) subscription = PrivatePub.subscription(:channel => channel) ...
Only sign when PrivatePub is avaiable. When thin server is down, PrivatePub is undefined and client will get an error on not able to accessing faye.js.
amoniacou_danthes
train
rb
fe5703450930827cedbb23105effe8c54fc1256d
diff --git a/command/init.go b/command/init.go index <HASH>..<HASH> 100644 --- a/command/init.go +++ b/command/init.go @@ -129,7 +129,7 @@ job "example" { } service { - # name = redis + name = "${TASKGROUP}-redis" tags = ["global", "cache"] port = "db" check { diff --git a/nomad/job_endpo...
Updated the example nomad job spec to use task group name in the service name
hashicorp_nomad
train
go,go
4b8de76e608340f033f54f98d1640fed41bd6680
diff --git a/webapps/webapp/src/test/js/e2e/cockpit/specs/dashboard-spec.js b/webapps/webapp/src/test/js/e2e/cockpit/specs/dashboard-spec.js index <HASH>..<HASH> 100644 --- a/webapps/webapp/src/test/js/e2e/cockpit/specs/dashboard-spec.js +++ b/webapps/webapp/src/test/js/e2e/cockpit/specs/dashboard-spec.js @@ -132,7 +13...
fix(tests): expect correct grammar on dashboard
camunda_camunda-bpm-platform
train
js
bc8f7089d2b073575adefc3a7dc920b79bfa704f
diff --git a/lib/core/facade.rb b/lib/core/facade.rb index <HASH>..<HASH> 100644 --- a/lib/core/facade.rb +++ b/lib/core/facade.rb @@ -113,6 +113,12 @@ module Facade #--- + def create_plugin(type, provider, options = {}) + Manager.connection.create(type, provider, options) + end + + #--- + def g...
Adding a create_plugin method and fixing an extension parameter issue in the core facade.
coralnexus_nucleon
train
rb
25ae4d65d56cd57af86fb10e9d348a39a9d28918
diff --git a/oct2py/session.py b/oct2py/session.py index <HASH>..<HASH> 100644 --- a/oct2py/session.py +++ b/oct2py/session.py @@ -237,9 +237,11 @@ class Oct2Py(object): # do not interfere with octavemagic logic if not "DefaultFigureCreateFcn" in call_line: post_call += """ - ...
Add guard for variables being cleared during a function call.
blink1073_oct2py
train
py
8776d4cbe7cd08934556b2ff03a11a590ddace2b
diff --git a/glfw.go b/glfw.go index <HASH>..<HASH> 100644 --- a/glfw.go +++ b/glfw.go @@ -1,8 +1,5 @@ package glfw3 -// Windows users: If you download the GLFW 64-bit binaries, when you copy over the contents of the lib folder make sure to rename -// glfw3dll.a to libglfw3dll.a, it doesn't work otherwise. - //#cgo...
Removed comment Removed explanation already exists in README
go-gl_glfw
train
go
67aa09e6051e600be027fccd1b319c85b52b9566
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -421,7 +421,7 @@ module.exports = { return; } - d.resolve(stdout); + d.resolve(stdout.replace('\n', '')); });
Remove the line character from the IP address remove the \n from the IP address
zekizeki_nodeDockerMachine
train
js
660b5e1fbfb7557ed72510586887cb5ec426c1d9
diff --git a/test/test_dss_api.py b/test/test_dss_api.py index <HASH>..<HASH> 100755 --- a/test/test_dss_api.py +++ b/test/test_dss_api.py @@ -75,16 +75,16 @@ class TestDssApi(unittest.TestCase): # Test put-files file_uuid = str(uuid.uuid4()) - file_version = datetime.datetime.now().isoformat...
Fixup for tests in <I>
HumanCellAtlas_dcp-cli
train
py
6a152820caeeca220f2c32bd160f89acdf0dc25e
diff --git a/graphene_django/rest_framework/types.py b/graphene_django/rest_framework/types.py index <HASH>..<HASH> 100644 --- a/graphene_django/rest_framework/types.py +++ b/graphene_django/rest_framework/types.py @@ -3,8 +3,8 @@ from graphene.types.unmountedtype import UnmountedType class ErrorType(graphene.Obje...
Improve ErrorType Marks some fields as required and non null, it also prevents to do useless checks on the frontend if using a typed language.
graphql-python_graphene-django
train
py
2c3454983f45b861c36723b9c5b60c2a231c292d
diff --git a/modules_v3/googlemap/module.php b/modules_v3/googlemap/module.php index <HASH>..<HASH> 100644 --- a/modules_v3/googlemap/module.php +++ b/modules_v3/googlemap/module.php @@ -1597,7 +1597,7 @@ class googlemap_WT_Module extends WT_Module implements WT_Module_Config, WT_Modu echo WT_I18N::translate('List f...
Placecheck - convert from POST to GET, so that when the popup (edit) window attempts to refresh its parent, we do not get browser warnings about re-sending form data.
fisharebest_webtrees
train
php
7eb9ee931bd21104da0eb1cb9113a420adc133ab
diff --git a/addon/search/searchcursor.js b/addon/search/searchcursor.js index <HASH>..<HASH> 100644 --- a/addon/search/searchcursor.js +++ b/addon/search/searchcursor.js @@ -8,6 +8,10 @@ pos = pos ? doc.clipPos(pos) : Pos(0, 0); this.pos = {from: pos, to: pos}; + // Prevent nonsensical behavior from que...
[searchcursor addon] Refuse to search for queries that match everything It doesn't do anything useful, and makes replace-all loop forever. Closes #<I>
codemirror_CodeMirror
train
js
765527817f7da453e12b65a9483f22b7a8171b01
diff --git a/src/main/java/picocli/CommandLine.java b/src/main/java/picocli/CommandLine.java index <HASH>..<HASH> 100644 --- a/src/main/java/picocli/CommandLine.java +++ b/src/main/java/picocli/CommandLine.java @@ -13292,7 +13292,7 @@ public class CommandLine { tracer.debug("Subcommand '%s' has...
fixed diamond not supported in Java versions < 7
remkop_picocli
train
java
01b4d1cfc16f902188564798c34bcb8e259a7728
diff --git a/Twilio/Exceptions/RestException.php b/Twilio/Exceptions/RestException.php index <HASH>..<HASH> 100644 --- a/Twilio/Exceptions/RestException.php +++ b/Twilio/Exceptions/RestException.php @@ -4,8 +4,6 @@ namespace Twilio\Exceptions; -use Exception; - class RestException extends TwilioException { p...
Update RestException constructor to be compatible with TwilioException
twilio_twilio-php
train
php
fd62e31a94b63e78721a647ff988e564fef6e01c
diff --git a/Tone/source/GrainPlayer.js b/Tone/source/GrainPlayer.js index <HASH>..<HASH> 100644 --- a/Tone/source/GrainPlayer.js +++ b/Tone/source/GrainPlayer.js @@ -300,6 +300,19 @@ define(["../core/Tone", "../source/Source", "../core/Buffer", "../source/BufferS }); /** + * If all the buffer is loaded + * @me...
loaded boolean indicates when GrainPlayer is loaded consistent with Tone.Player
Tonejs_Tone.js
train
js,js
dadb8510a9d44654287d721be60b84e9f65e1edb
diff --git a/common/src/main/java/org/whispersystems/curve25519/java/curve_sigs.java b/common/src/main/java/org/whispersystems/curve25519/java/curve_sigs.java index <HASH>..<HASH> 100644 --- a/common/src/main/java/org/whispersystems/curve25519/java/curve_sigs.java +++ b/common/src/main/java/org/whispersystems/curve2551...
Remove unused variable This will also get rearranged in the new codegen Fixes #6 // FREEBIE
signalapp_curve25519-java
train
java
8b2cc99d2306df532514857fa9541c786fb0079e
diff --git a/perceval/backends/core/bugzilla.py b/perceval/backends/core/bugzilla.py index <HASH>..<HASH> 100644 --- a/perceval/backends/core/bugzilla.py +++ b/perceval/backends/core/bugzilla.py @@ -60,7 +60,7 @@ class Bugzilla(Backend): :param tag: label used to mark the data :param archive: archive to store...
[bugzilla] Set category when calling fetch and fetch_from_archive This patch adds to the params of the fetch_items method the category. Thus, it allows to handle fetching operations (fetch and fetch_from_archive) with multiple categories
chaoss_grimoirelab-perceval
train
py
8fbd11c66a859de25fce65ba4b83841789005cad
diff --git a/test/test_generic_spreadsheet.rb b/test/test_generic_spreadsheet.rb index <HASH>..<HASH> 100644 --- a/test/test_generic_spreadsheet.rb +++ b/test/test_generic_spreadsheet.rb @@ -1,3 +1,4 @@ +# -*- encoding: utf-8 -*- require File.dirname(__FILE__) + '/test_helper.rb' class TestGenericSpreadsheet < Test...
add encoding comment to the top of this new file
roo-rb_roo
train
rb
e145422836b904c9f453a8e99ba526b937286a32
diff --git a/addon/adapters/contributor.js b/addon/adapters/contributor.js index <HASH>..<HASH> 100644 --- a/addon/adapters/contributor.js +++ b/addon/adapters/contributor.js @@ -1,13 +1,3 @@ import OsfAdapter from './osf-adapter'; -export default OsfAdapter.extend({ - buildURL(_, __, snap) { - // TOOD: de...
Contributor adapter no longer needs the buildUrl method.
CenterForOpenScience_ember-osf
train
js
d1089cab6671fe1773fd5d3156771ec3a057a7a8
diff --git a/test/unit/src/class/Dates.php b/test/unit/src/class/Dates.php index <HASH>..<HASH> 100644 --- a/test/unit/src/class/Dates.php +++ b/test/unit/src/class/Dates.php @@ -363,16 +363,14 @@ class Dates extends atoum public function testGetSqlFormat() { - $currentTimeZone = date('O'); - ...
Fix Dates::testGetSqlFormat unit test Travis and my server not have same timezone config. I not see the fixed timezone and the test pass on my server because its setting is gmt<I> :/
bfw-systems_bfw
train
php
c54aa9d910e82d708ebd3bd86483be68c9218367
diff --git a/lib/main.js b/lib/main.js index <HASH>..<HASH> 100644 --- a/lib/main.js +++ b/lib/main.js @@ -9,8 +9,6 @@ const pkg = require('../package') const util = require('./util') function main () { - logger.info('%s v%s', pkg.name, pkg.version) - const url = util.getUrl() const tags = git.getSemverTags(...
Use logger only after level has been set
jcollado_pr-tagger
train
js
ed45fb5cd3b901ed55a4d176191bf1407aec14e1
diff --git a/src/Brokerage/Address.php b/src/Brokerage/Address.php index <HASH>..<HASH> 100644 --- a/src/Brokerage/Address.php +++ b/src/Brokerage/Address.php @@ -138,7 +138,7 @@ class Address extends \CFX\JsonApi\AbstractResource implements AddressInterface protected function serializeAttribute($name) { -...
Fixed minor bug in address meta data serialization
cfxmarkets_php-public-models
train
php
9d4034797a4da31a7a6c6bd67ae69f50ef2a97b6
diff --git a/lib/vmonkey/version.rb b/lib/vmonkey/version.rb index <HASH>..<HASH> 100644 --- a/lib/vmonkey/version.rb +++ b/lib/vmonkey/version.rb @@ -1,3 +1,3 @@ module Vmonkey - VERSION = '0.5.1' -end \ No newline at end of file + VERSION = '0.6.0' +end
rev to <I> with new vApp features
RallySoftware_vmonkey
train
rb
e08ac167dc758f18222be1b718897a924c61f913
diff --git a/lib/logan/client.rb b/lib/logan/client.rb index <HASH>..<HASH> 100644 --- a/lib/logan/client.rb +++ b/lib/logan/client.rb @@ -4,6 +4,12 @@ module Logan class Client include HTTParty + # Initializes the Logan shared client with information required to communicate with Basecamp + # + #...
document the initialize method in client to understand doc flow
birarda_logan
train
rb
c751a8cb23d3ca0ff81295725c19c34e8ac5e0df
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup,find_packages setup(name='pyjade', - version='2.2.0', + version='3.0.0', download_url='git@github.com:syrusakbary/pyjade.git', packages=find_packages(), ...
Updated pyjade major version.
syrusakbary_pyjade
train
py
eaa99e36e78a808710e0fab0be245dbcb04dddd6
diff --git a/tests/Translators/XmlTest.php b/tests/Translators/XmlTest.php index <HASH>..<HASH> 100644 --- a/tests/Translators/XmlTest.php +++ b/tests/Translators/XmlTest.php @@ -42,7 +42,10 @@ class XmlTest extends \PHPUnit_Framework_TestCase 'multi' => array( 'level', 'with' => 'key', - 3 => 'num...
Adding coverage to xml translator
Danzabar_config-builder
train
php
3401824d800820087d72c88b836f06d72ffd6db9
diff --git a/lib/dynflow.rb b/lib/dynflow.rb index <HASH>..<HASH> 100644 --- a/lib/dynflow.rb +++ b/lib/dynflow.rb @@ -55,7 +55,8 @@ module Dynflow class Railtie < Rails::Railtie config.before_initialize do - ::ActiveJob::QueueAdapters.include( + ::ActiveJob::QueueAdapters.send( + :...
Ruby <I> compatibility for ActiveJob Calling .include on a class does not work as it's a private method in Ruby pre <I>. <URL>
Dynflow_dynflow
train
rb
5816afa8d70ec67396782ec27d5724ddcb48a3f6
diff --git a/src/main/java/net/dv8tion/jda/internal/managers/channel/ChannelManagerImpl.java b/src/main/java/net/dv8tion/jda/internal/managers/channel/ChannelManagerImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/dv8tion/jda/internal/managers/channel/ChannelManagerImpl.java +++ b/src/main/java/net/dv8tion...
Fixes setInvitable in ThreadChannelManager (#<I>)
DV8FromTheWorld_JDA
train
java
d81f3776ab2a31840701fe22a9a78c15bdf47842
diff --git a/tweepy/cursor.py b/tweepy/cursor.py index <HASH>..<HASH> 100644 --- a/tweepy/cursor.py +++ b/tweepy/cursor.py @@ -84,7 +84,7 @@ class IdIterator(BaseIterator): def __init__(self, method, args, kargs): BaseIterator.__init__(self, method, args, kargs) - self.max_id = kargs.get('max_id'...
IdIterator fix TypeError: _call() got multiple values for keyword argument 'max_id'. The problem is that max_id is passed in self.method as param but also kept in kargs. Doing a kargs.pop with None as default value for 'max_id' solves the problem as not keeping 'max_id' in two places anymore.
tweepy_tweepy
train
py
e8feea7e929c168eccd9cbe0395346312fe12dbd
diff --git a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/ParentView.php b/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/ParentView.php index <HASH>..<HASH> 100644 --- a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/ParentView.php +++ b/src/ContaoCom...
Fix improperly encoded ids.
contao-community-alliance_dc-general
train
php
b7504dab7e4e4c860f56c9f623aef7bdb2704f94
diff --git a/spec/savon/request_spec.rb b/spec/savon/request_spec.rb index <HASH>..<HASH> 100644 --- a/spec/savon/request_spec.rb +++ b/spec/savon/request_spec.rb @@ -16,6 +16,20 @@ describe Savon::WSDLRequest do expect(wsdl_request.build).to be_an(HTTPI::Request) end + describe "proxy" do + it "i...
Add spec for global :proxy setting on WSDL requests.
savonrb_savon
train
rb
8c3d7bb982f20ef4cbeebbf77277992c24eca361
diff --git a/ep_ldapauth.js b/ep_ldapauth.js index <HASH>..<HASH> 100644 --- a/ep_ldapauth.js +++ b/ep_ldapauth.js @@ -81,7 +81,13 @@ exports.authorize = function(hook_name, context, cb) { cache: true }); - username = context.req.session.user.username; + if (typeof(context.req.session.user) != 'undefined' &...
Fix authorize for non-logged in accounts Found a bug where someone that had not logged in (no user object stored in session) caused a failure.
tykeal_ep_ldapauth
train
js