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
976363514be29b578b5148b94a1fd7751d409536
diff --git a/src/main/java/com/greatmancode/craftconomy3/converter/ConverterList.java b/src/main/java/com/greatmancode/craftconomy3/converter/ConverterList.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/greatmancode/craftconomy3/converter/ConverterList.java +++ b/src/main/java/com/greatmancode/craftconomy3/co...
Load the converter for Craftconomy. Renamed iconomy to iconomy6.
greatman_craftconomy3
train
java
82538df41638c3eded3c7c39bb19530c36530ced
diff --git a/asammdf/gui/widgets/list.py b/asammdf/gui/widgets/list.py index <HASH>..<HASH> 100644 --- a/asammdf/gui/widgets/list.py +++ b/asammdf/gui/widgets/list.py @@ -405,7 +405,7 @@ class MinimalListWidget(QtWidgets.QListWidget): super().__init__(*args, **kwargs) - self.setDragDropMode(QtWidget...
fix drag and drop in the minimal list needs pyqtgraph <I>
danielhrisca_asammdf
train
py,txt,py
9cf16382a0df8388a3baf1667df5a9c3fea98c58
diff --git a/spec/guard/listeners/linux_spec.rb b/spec/guard/listeners/linux_spec.rb index <HASH>..<HASH> 100644 --- a/spec/guard/listeners/linux_spec.rb +++ b/spec/guard/listeners/linux_spec.rb @@ -24,6 +24,7 @@ describe Guard::Linux do describe "#start", :long_running => true do before(:each) do ...
Stub inotify.process for control flow test. This is necessary, since JRuby doesn't exit process until an event is received.
guard_guard
train
rb
cc3ec6af72d981377f0b1b257677cd2100c9db00
diff --git a/src/FM/Keystone/Client/Factory.php b/src/FM/Keystone/Client/Factory.php index <HASH>..<HASH> 100644 --- a/src/FM/Keystone/Client/Factory.php +++ b/src/FM/Keystone/Client/Factory.php @@ -93,6 +93,11 @@ class Factory implements EventSubscriberInterface /** @var \Guzzle\Http\Message\Request $requ...
Fixed a bug which could cause infinite recursion when obtaining a token
financialmedia_keystone-client
train
php
12e0d2468f09ed107d240cd49b7b3f2b0e3d5dbe
diff --git a/lib/chef/http/validate_content_length.rb b/lib/chef/http/validate_content_length.rb index <HASH>..<HASH> 100644 --- a/lib/chef/http/validate_content_length.rb +++ b/lib/chef/http/validate_content_length.rb @@ -61,6 +61,7 @@ class Chef else validate(http_response, @content_length_counter...
CHEF-<I>: reset state for streamed downloads quick fix to "free" our state from one streamed download request so that we don't pollute the state of the next streamed request.
chef_chef
train
rb
8713f859a44b5d91b49b81f8ad4a87cd867a21cf
diff --git a/selene/core/match.py b/selene/core/match.py index <HASH>..<HASH> 100644 --- a/selene/core/match.py +++ b/selene/core/match.py @@ -22,15 +22,15 @@ import warnings from typing import List, Any -from selene.core import query from selene.common import predicate +from selene.core import query from selene....
fix selene/core/match.py:<I>:5: E<I> continuation line with same indent as next logical line
yashaka_selene
train
py
9e8ad9c3c5a3ec2cdd5715ab81b8cd87cb9f1eb2
diff --git a/src/main/java/org/psjava/ds/geometry/PointByXYComparator.java b/src/main/java/org/psjava/ds/geometry/PointByXYComparator.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/psjava/ds/geometry/PointByXYComparator.java +++ b/src/main/java/org/psjava/ds/geometry/PointByXYComparator.java @@ -6,15 +6,9 @@ ...
refactoring - make code simpler PointByXYComparator
psjava_psjava
train
java
5decc9448e90c119f20e8b945b64fc7fca28590c
diff --git a/packages/cli/src/util.js b/packages/cli/src/util.js index <HASH>..<HASH> 100644 --- a/packages/cli/src/util.js +++ b/packages/cli/src/util.js @@ -62,9 +62,5 @@ export function formatExportName(name) { return `Svg${name}` } - if (/[-]/g.test(name)) { - return camelcase(name, { pascalCase: true...
fix: formatExportName for single names (#<I>)
smooth-code_svgr
train
js,js
c9d46545925f6e0ce946d3de660944cff481a7cb
diff --git a/pkg/services/notifications/notifications.go b/pkg/services/notifications/notifications.go index <HASH>..<HASH> 100644 --- a/pkg/services/notifications/notifications.go +++ b/pkg/services/notifications/notifications.go @@ -48,7 +48,7 @@ func Init() error { } if !util.IsEmail(setting.Smtp.FromAddress) ...
s/from_adress/from_address
grafana_grafana
train
go
bedf142f7ffea556883fde1255c1c4a4d66485aa
diff --git a/cdrouter/configs.py b/cdrouter/configs.py index <HASH>..<HASH> 100644 --- a/cdrouter/configs.py +++ b/cdrouter/configs.py @@ -248,7 +248,7 @@ class ConfigsService(object): :rtype: string """ - return self.service.get(self.base, params={'template': 'default'}).text + return...
Fix ConfigsService.get_new method Fix the ConfigsService.get_new method such that it returns just the plain-text contents of a new config file and not the full JSON object response as a string.
qacafe_cdrouter.py
train
py
86e751acb35ebe618d33f7c7caecf61f087298f8
diff --git a/geth/wrapper.py b/geth/wrapper.py index <HASH>..<HASH> 100644 --- a/geth/wrapper.py +++ b/geth/wrapper.py @@ -89,7 +89,8 @@ def construct_test_chain_kwargs(**overrides): overrides.setdefault('ipc_api', ALL_APIS) overrides.setdefault('verbosity', '5') - overrides.setdefault('shh', True) + ...
Shh is enabled only when it is passed in overrides
ethereum_py-geth
train
py
f8dc187599e755124130e0c2c31bad1ed5175df6
diff --git a/dfs/snapshot.go b/dfs/snapshot.go index <HASH>..<HASH> 100644 --- a/dfs/snapshot.go +++ b/dfs/snapshot.go @@ -40,6 +40,13 @@ func (dfs *DistributedFilesystem) Snapshot(data SnapshotInfo) (string, error) { glog.Errorf("Could not find image %s for snapshot: %s", image, err) return "", err } + + /...
When performing a snapshot, make sure we have the images locally before tagging them in the registry and triggering a push
control-center_serviced
train
go
ca08d0b2e14404d14bba9a544efd96055faee734
diff --git a/bookstore/publish.py b/bookstore/publish.py index <HASH>..<HASH> 100644 --- a/bookstore/publish.py +++ b/bookstore/publish.py @@ -2,7 +2,7 @@ import json import aiobotocore - +from botocore.exceptions import ClientError from nbformat import ValidationError, validate as validate_nb from notebook.base...
Add error handling we use in clone for catching & converting s3 errors
nteract_bookstore
train
py
a849ce608e02a74a726920f402ef39de2f8a7279
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,9 @@ if __name__ == '__main__': setup( version='0.1.dev4', name='pyinfra', - description='Stateful deploy with Python.', - author='Nick @ Oxygem', - author_email='nick@oxygem...
Updated author/name/desc.
Fizzadar_pyinfra
train
py
7ed6d35f2cbd21ee5b6ec019787a664003097ced
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface...
bumped Symfony version to <I>
symfony_symfony
train
php
46f034051cf597e4b0c501ae6ea7855b7ffe6a36
diff --git a/lib/ruote/engine.rb b/lib/ruote/engine.rb index <HASH>..<HASH> 100644 --- a/lib/ruote/engine.rb +++ b/lib/ruote/engine.rb @@ -331,12 +331,12 @@ module Ruote # This operation is substantially less costly than Engine#processes (though # the 'how substantially' depends on the storage chosen). #...
prefer Engine#process_ids over #process_wfids
jmettraux_ruote
train
rb
18e76edc95c4dad12bbca6e5c1b7c8931a22ed5b
diff --git a/src/test/php/ParseTest.php b/src/test/php/ParseTest.php index <HASH>..<HASH> 100644 --- a/src/test/php/ParseTest.php +++ b/src/test/php/ParseTest.php @@ -643,7 +643,7 @@ class ParseTest extends \PHPUnit_Framework_TestCase [['foo', 'bar', 'baz'], '[foo|bar|baz]'], [[1, 2, 3, 4, 5],...
don't use instance, will yield another result on HHVM
stubbles_stubbles-values
train
php
be056d4b4574e107b7483788ec3389fb166baed1
diff --git a/src/Text.php b/src/Text.php index <HASH>..<HASH> 100644 --- a/src/Text.php +++ b/src/Text.php @@ -25,13 +25,9 @@ class Text extends Element } /** The maximum length of the field. */ - public function maxLength($length, $size = null) + public function maxLength($length) { - ...
we have a separate method for size, so this is bollocks
monolyth-php_formulaic
train
php
eccfa9dedf6845134f376efd9ff95979ca375c93
diff --git a/lib/atomo/ast/global.rb b/lib/atomo/ast/global.rb index <HASH>..<HASH> 100644 --- a/lib/atomo/ast/global.rb +++ b/lib/atomo/ast/global.rb @@ -4,7 +4,7 @@ module Atomo g.sp = g.kleene g.any(" ", "\n", :comment) g.sig_sp = g.many g.any(" ", "\n", :comment) - ident_start = /(?![&@#$~`:])[...
corrected $ being allowed at the start of identifier/operator names
vito_atomy
train
rb
f41728c2f9853655f3d888f10c2e2c19c069a00c
diff --git a/FML/Script/Builder.php b/FML/Script/Builder.php index <HASH>..<HASH> 100644 --- a/FML/Script/Builder.php +++ b/FML/Script/Builder.php @@ -49,10 +49,10 @@ abstract class Builder { if (!fmod($value, 1)) $stringVal .= '.'; return $stringVal; } - + /** * Get the Boolean String-Representation of t...
added methods for include & constant commands
steeffeen_FancyManiaLinks
train
php
a92d83a53295827a314498f5e7a63b46fe782db7
diff --git a/modules/citrus-ftp/src/main/java/com/consol/citrus/ftp/client/ScpClientBuilder.java b/modules/citrus-ftp/src/main/java/com/consol/citrus/ftp/client/ScpClientBuilder.java index <HASH>..<HASH> 100644 --- a/modules/citrus-ftp/src/main/java/com/consol/citrus/ftp/client/ScpClientBuilder.java +++ b/modules/citru...
(#<I>) reverted removal of autoReadFiles method to prevent breaking change
citrusframework_citrus
train
java
7ccf4279664d8afcbef5b7437764770a86769d37
diff --git a/ui/src/shared/functions.js b/ui/src/shared/functions.js index <HASH>..<HASH> 100644 --- a/ui/src/shared/functions.js +++ b/ui/src/shared/functions.js @@ -1,7 +1,6 @@ module.exports = { remCalc: function(values) { - values = values.replace('px', ''); - values = values.split(' '); + values = val...
refactoring rem function
yldio_joyent-portal
train
js
09e25c5882a83f87a3daabb82105e54509ed7580
diff --git a/safe/definitions/fields.py b/safe/definitions/fields.py index <HASH>..<HASH> 100644 --- a/safe/definitions/fields.py +++ b/safe/definitions/fields.py @@ -1161,6 +1161,8 @@ from safe.definitions.minimum_needs import minimum_needs_fields # noqa count_fields = [ feature_value_field, population_cou...
add displaced and fatalities to count_fields
inasafe_inasafe
train
py
6b96a155c08393a212c34f32780400fcfcfdced7
diff --git a/core/model/src/main/java/it/unibz/inf/ontop/iq/node/normalization/impl/LeftJoinNormalizerImpl.java b/core/model/src/main/java/it/unibz/inf/ontop/iq/node/normalization/impl/LeftJoinNormalizerImpl.java index <HASH>..<HASH> 100644 --- a/core/model/src/main/java/it/unibz/inf/ontop/iq/node/normalization/impl/Le...
Minor bugfix in LeftJoinNormalizerImpl.
ontop_ontop
train
java
59cbbfb682380d1150c474d05d57892e8868070b
diff --git a/pynes/tests/clc_test.py b/pynes/tests/clc_test.py index <HASH>..<HASH> 100644 --- a/pynes/tests/clc_test.py +++ b/pynes/tests/clc_test.py @@ -10,13 +10,12 @@ from pynes.compiler import lexical, syntax, semantic class ClcTest(unittest.TestCase): - def test_clc_sngl(self): tokens = lexical...
PEP8 fixes on tests/clc_test.py
gutomaia_nesasm_py
train
py
634f8ada1a8c10781672bba6e8fe8a5164f303af
diff --git a/src/Layers/BasemapLayer.js b/src/Layers/BasemapLayer.js index <HASH>..<HASH> 100644 --- a/src/Layers/BasemapLayer.js +++ b/src/Layers/BasemapLayer.js @@ -156,6 +156,10 @@ bounds: null, zoom: null, onAdd: function(map){ + if(!map.attributionControl && console){ + console.warn("L.e...
fail with a console.warn to fix #<I>
Esri_esri-leaflet
train
js
954861466015beda64a85963b96939b3b8cf2836
diff --git a/resources/api/src/main/java/org/jboss/forge/addon/resource/AbstractFileResource.java b/resources/api/src/main/java/org/jboss/forge/addon/resource/AbstractFileResource.java index <HASH>..<HASH> 100644 --- a/resources/api/src/main/java/org/jboss/forge/addon/resource/AbstractFileResource.java +++ b/resources/...
Returning default FileOperations if ResourceFactory impl does not support transactions
forge_core
train
java
1fc4ea49939d9f446393360e1280172511478c1b
diff --git a/tests/Imbo/IntegrationTest/Cache/APCTest.php b/tests/Imbo/IntegrationTest/Cache/APCTest.php index <HASH>..<HASH> 100644 --- a/tests/Imbo/IntegrationTest/Cache/APCTest.php +++ b/tests/Imbo/IntegrationTest/Cache/APCTest.php @@ -18,8 +18,8 @@ use Imbo\Cache\APC; */ class APCTest extends CacheTests { p...
Allow the usage of pecl/apcu as well
imbo_imbo
train
php
7a55f1dd941a3362c028cc8710c0d0e166366859
diff --git a/src/edeposit/amqp/storage/settings.py b/src/edeposit/amqp/storage/settings.py index <HASH>..<HASH> 100755 --- a/src/edeposit/amqp/storage/settings.py +++ b/src/edeposit/amqp/storage/settings.py @@ -45,7 +45,12 @@ PRIVATE_INDEX_PASSWORD = "" #: Password for private index. You HAVE TO set it. PUBLIC_DIR = ...
#<I>: Added two new options HNAS_INDICATOR and HNAS_IND_ALLOWED.
edeposit_edeposit.amqp.storage
train
py
ca5104a7592c0772fd88289423fa4343742aff6b
diff --git a/raven/base.py b/raven/base.py index <HASH>..<HASH> 100644 --- a/raven/base.py +++ b/raven/base.py @@ -443,7 +443,8 @@ class Client(object): interfaces. Any key which contains a '.' will be assumed to be a data interface. :param date: the date...
clarify time_spent, and note that it should be an integer
getsentry_raven-python
train
py
297349d8ed473e4b63890cddb09d939fa2ee3551
diff --git a/skorch/exceptions.py b/skorch/exceptions.py index <HASH>..<HASH> 100644 --- a/skorch/exceptions.py +++ b/skorch/exceptions.py @@ -1,11 +1,13 @@ """Contains skorch-specific exceptions and warnings.""" +from sklearn.exceptions import NotFittedError + class SkorchException(BaseException): """Base s...
NotInitializedError inherits from NotFittedError (#<I>) This ensures that a user can catch the sklearn `NotFittedError`, just as they can with regular sklearn estimators. As discussed in [1]. [1] <URL>
skorch-dev_skorch
train
py
9ea54597dc28034c9e6ba916aa83bb9d73c43c83
diff --git a/dramatiq/results/backends/redis.py b/dramatiq/results/backends/redis.py index <HASH>..<HASH> 100644 --- a/dramatiq/results/backends/redis.py +++ b/dramatiq/results/backends/redis.py @@ -31,7 +31,7 @@ class RedisBackend(ResultBackend): client(Redis): An optional client. If this is passed, t...
doc: added missing character in docstring (#<I>)
Bogdanp_dramatiq
train
py
8a62d542769fb26dcdec895570a49ffcebeca9a4
diff --git a/test/test_transforms.py b/test/test_transforms.py index <HASH>..<HASH> 100644 --- a/test/test_transforms.py +++ b/test/test_transforms.py @@ -1852,8 +1852,10 @@ def test_randomperspective(): ) +@pytest.mark.parametrize("seed", range(10)) @pytest.mark.parametrize("mode", ["L", "RGB", "F"]) -de...
Set seed of test_randomperspective_fill (#<I>) * setting <I> seeds, let's see if it fails * Passed with <I>, so setting <I>
pytorch_vision
train
py
070322215af84e5b7dccdf462d172de6eaa53d80
diff --git a/bpc8583/transaction.py b/bpc8583/transaction.py index <HASH>..<HASH> 100644 --- a/bpc8583/transaction.py +++ b/bpc8583/transaction.py @@ -55,7 +55,8 @@ class Transaction(): self.IsoMessage.FieldData(35, self.card.get_track2()) else: - return + print('Unknown tr...
Showing 'Unknown transaction type:'
timgabets_bpc8583
train
py
d7947f37ca9b6e1c3af73c2c5b969fe0d3a037de
diff --git a/spyder/plugins/explorer/widgets/explorer.py b/spyder/plugins/explorer/widgets/explorer.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/explorer/widgets/explorer.py +++ b/spyder/plugins/explorer/widgets/explorer.py @@ -433,7 +433,24 @@ class DirView(QTreeView): def create_file_new_actions(self, ...
Add support for adding new files/folders/etc in the selected directory on the explorer tree
spyder-ide_spyder
train
py
5e1503698ee24fef0657bf9984d10c56cac38842
diff --git a/hvac/v1/__init__.py b/hvac/v1/__init__.py index <HASH>..<HASH> 100644 --- a/hvac/v1/__init__.py +++ b/hvac/v1/__init__.py @@ -44,7 +44,7 @@ class Client(object): """ return self._get('/v1/sys/init').json()['initialized'] - def initialize(self, secret_shares=5, secret_threshold=3): + ...
Add support for PGP encryption for unseal keys Added in Vault <I>
hvac_hvac
train
py
ca9acf186f9c54c930b2184492dce50832bcf21e
diff --git a/tests/FontAwesomeTest.php b/tests/FontAwesomeTest.php index <HASH>..<HASH> 100755 --- a/tests/FontAwesomeTest.php +++ b/tests/FontAwesomeTest.php @@ -11,7 +11,7 @@ class FontAwesomeTest extends \PHPUnit_Framework_TestCase { public function testCdnLinkOutput() { - $this->expectOutputStrin...
Update FontAwesomeTest.php Fixing the test for the CDN output verification.
kevinkhill_FontAwesomePHP
train
php
08b993c7da72cf99bf036624885fcfb476660a5e
diff --git a/lib/init/build.js b/lib/init/build.js index <HASH>..<HASH> 100644 --- a/lib/init/build.js +++ b/lib/init/build.js @@ -3,6 +3,10 @@ var utils = require('utilities') , fs = require('fs'); var init = function (app, callback) { + + if (app.config.disableBuild) { + return; + } setupModels(app)...
Allow to disable build The build triggers node supervisor on OpenShift, so if you don' need it, it would be nice if it could be turned off.
mde_ejs
train
js
d9bc394bf0367f08cf9d1412e1dbd2d442e18e2b
diff --git a/lib/validates_formatting_of/version.rb b/lib/validates_formatting_of/version.rb index <HASH>..<HASH> 100644 --- a/lib/validates_formatting_of/version.rb +++ b/lib/validates_formatting_of/version.rb @@ -1,3 +1,3 @@ module ValidatesFormattingOf - VERSION = "0.4.1" + VERSION = "0.5.0" end
Bumped to <I> As support for MRI <I> and Ruby Enterprise Edition has been dropped, a minor version bump was in order [ci skip]
mdespuits_validates_formatting_of
train
rb
975d2705f8fa41a81686f78abaf99b68671567c3
diff --git a/lib/messaging/write.rb b/lib/messaging/write.rb index <HASH>..<HASH> 100644 --- a/lib/messaging/write.rb +++ b/lib/messaging/write.rb @@ -6,7 +6,7 @@ module Messaging cls.class_exec do include Log::Dependency - dependency :message_data_writer + dependency :message_writer ...
message_writer, not message_data_writer
eventide-project_messaging
train
rb
0b2f71ec9b43a77911ef4a1a3812750895041a65
diff --git a/eg/color.py b/eg/color.py index <HASH>..<HASH> 100644 --- a/eg/color.py +++ b/eg/color.py @@ -86,7 +86,7 @@ class EgColorizer(): def _color_helper(self, text, pattern, repl): # < 2.7 didn't have the flags named argument. - if sys.version_info[1] < 7: + if sys.version_info < (2...
Change from minor- to major/minor- aware version check
srsudar_eg
train
py
2293f54df3cbd12c1f29d854d3c4ca8e0c01f3c6
diff --git a/lib/Model.js b/lib/Model.js index <HASH>..<HASH> 100644 --- a/lib/Model.js +++ b/lib/Model.js @@ -210,6 +210,7 @@ Model.compile = function compile (name, schema, options, base) { return async function () { let args = [...arguments]; if (typeof args[args.length - 1] === "function") { + ...
Adding warning when passing in callback function to transaction method
dynamoosejs_dynamoose
train
js
a3bf40e852244fa9892e9b7a210dfc8c4c73d8b2
diff --git a/js/api.js b/js/api.js index <HASH>..<HASH> 100644 --- a/js/api.js +++ b/js/api.js @@ -353,7 +353,7 @@ window.textsecure.api = function() { } self.getMessageWebsocket = function() { - return getWebsocket(URL_CALLS['push'], true, 60000); + return getWebsocket(URL_CALLS['push'], true...
Shorten websocket time out. Fixes #<I>
ForstaLabs_librelay-node
train
js
3da2f1c02828ed58f7e3a7b5a35c5414e8131f28
diff --git a/lib/arithmetic/nodes.rb b/lib/arithmetic/nodes.rb index <HASH>..<HASH> 100644 --- a/lib/arithmetic/nodes.rb +++ b/lib/arithmetic/nodes.rb @@ -11,7 +11,17 @@ module Arithmetic end def eval - BigDecimal.new(@operand) + if has_dangling_decimal_point? + BigDecimal.new(@operand +...
handle issue with dangling decimal point
nulogy_arithmetic
train
rb,rb
2e572c4135c3f5ad3061c1f58cdb8a70bed0a9d3
diff --git a/python/pyspark/context.py b/python/pyspark/context.py index <HASH>..<HASH> 100644 --- a/python/pyspark/context.py +++ b/python/pyspark/context.py @@ -19,6 +19,7 @@ from __future__ import print_function import os import shutil +import signal import sys from threading import Lock from tempfile import ...
[SPARK-<I>] [PYTHON] Add signal handler to trap Ctrl-C in pyspark and cancel all running jobs This patch adds a signal handler to trap Ctrl-C and cancels running job.
apache_spark
train
py
d46396479932162672d5eccb19861ca24ef73908
diff --git a/lib/bosh/gen/generators/package_generator.rb b/lib/bosh/gen/generators/package_generator.rb index <HASH>..<HASH> 100644 --- a/lib/bosh/gen/generators/package_generator.rb +++ b/lib/bosh/gen/generators/package_generator.rb @@ -61,6 +61,8 @@ module Bosh::Gen ./configure --prefix=${BOSH_INSTALL_T...
comments to aide simple copying of pkg contents
cloudfoundry-community_bosh-gen
train
rb
0038ff743145a317ac98996fc5bf01fe6b883838
diff --git a/poco/pocofw.py b/poco/pocofw.py index <HASH>..<HASH> 100644 --- a/poco/pocofw.py +++ b/poco/pocofw.py @@ -78,7 +78,7 @@ class Poco(PocoAccelerationMixin): expression pattern ``UI.xx`` In keyword args, you can only use `xx` or `xxMatches` at the same time. Using both with the same a...
Fix a typo in pocofw.py
AirtestProject_Poco
train
py
4b3e6dbbe869aaf6e49fd104c464e2f4f41ed1ba
diff --git a/moskito-webui/src/main/java/net/anotheria/moskito/webui/gauges/api/GaugeAPIImpl.java b/moskito-webui/src/main/java/net/anotheria/moskito/webui/gauges/api/GaugeAPIImpl.java index <HASH>..<HASH> 100644 --- a/moskito-webui/src/main/java/net/anotheria/moskito/webui/gauges/api/GaugeAPIImpl.java +++ b/moskito-we...
fixed exception on gauges page if there are no configured gauges.
anotheria_moskito
train
java
2209e64905bc57d93ae6eb619edc61afef1ea289
diff --git a/src/scripts/postinstall.js b/src/scripts/postinstall.js index <HASH>..<HASH> 100644 --- a/src/scripts/postinstall.js +++ b/src/scripts/postinstall.js @@ -5121,7 +5121,7 @@ module.exports = function($logger, hookArgs) { for which environment {development|prod} the project was prepared. If neede...
fix: fix cannot read .toLowerCase() of undefined NativeScript CLI throws `cannot read .toLowerCase() of undefined` error as there isn't platform property in platformData object. We should use prepareData instead.
EddyVerbruggen_nativescript-plugin-firebase
train
js
5ecbfba369e8b2faac65e9b3a645ba36e3a14b88
diff --git a/mockupdb/__init__.py b/mockupdb/__init__.py index <HASH>..<HASH> 100755 --- a/mockupdb/__init__.py +++ b/mockupdb/__init__.py @@ -676,7 +676,7 @@ class OpGetMore(Request): namespace, pos = _get_c_string(msg, 4) num_to_return, = _UNPACK_INT(msg[pos:pos + 4]) pos += 4 - curs...
Add cursor_id property.
ajdavis_mongo-mockup-db
train
py
5361e380560fda66d4720ee21c3eafc9716867db
diff --git a/packages/ra-ui-materialui/src/layout/UserMenu.js b/packages/ra-ui-materialui/src/layout/UserMenu.js index <HASH>..<HASH> 100644 --- a/packages/ra-ui-materialui/src/layout/UserMenu.js +++ b/packages/ra-ui-materialui/src/layout/UserMenu.js @@ -53,7 +53,7 @@ class UserMenu extends React.Component { ...
Don't extra clone icon
marmelab_react-admin
train
js
bdb8663d14bef156f6c3a2b35b542e903e34d05f
diff --git a/espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/w3c/state/InputStateTable.java b/espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/w3c/state/InputStateTable.java index <HASH>..<HASH> 100644 --- a/espresso-server/app/src/androidTest/java/io/appium/es...
Make inputs cancellable (#<I>) * Add 'cancel list' to InputStateTable * Add a KeyUp action object to cancel list when KeyDown is called * Created a copy constructor to create ActionObject * Other * Moved 'active input sources' to 'state' package * Make 'pointerDown' cancellable
appium_appium-espresso-driver
train
java
a4f0811f11cd9555c519bdfb4fe986cee23948b9
diff --git a/clustering/ee/infinispan/src/main/java/org/wildfly/clustering/ee/infinispan/InfinispanBatcher.java b/clustering/ee/infinispan/src/main/java/org/wildfly/clustering/ee/infinispan/InfinispanBatcher.java index <HASH>..<HASH> 100644 --- a/clustering/ee/infinispan/src/main/java/org/wildfly/clustering/ee/infinisp...
WFLY-<I> NPE during Session.requestDone(...) when using <transaction mode="NONE"/>
wildfly_wildfly
train
java
be014ca61b495eb4dc0c252a98a6e6b00234cbff
diff --git a/Task/Generate.php b/Task/Generate.php index <HASH>..<HASH> 100644 --- a/Task/Generate.php +++ b/Task/Generate.php @@ -293,6 +293,8 @@ class Generate extends Base { foreach ($components as $name => $component) { $parent_name = $component->containingComponent(); if (!empty($parent_name)) {...
Added assertion to check containing component is a valid ID.
drupal-code-builder_drupal-code-builder
train
php
ef3acab8d5cb0d842a3995b1b0e7e6bfd27f2292
diff --git a/core/src/main/java/org/bitcoinj/core/Peer.java b/core/src/main/java/org/bitcoinj/core/Peer.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/core/Peer.java +++ b/core/src/main/java/org/bitcoinj/core/Peer.java @@ -519,12 +519,10 @@ public class Peer extends PeerSocketHandler { ...
Again reword a happy connect log message. Receiving the remote version message doesn't mean we're connected.
bitcoinj_bitcoinj
train
java
5a8642a95e0e5dafe2cc39515f51c48e9b29325b
diff --git a/test/teststop.js b/test/teststop.js index <HASH>..<HASH> 100644 --- a/test/teststop.js +++ b/test/teststop.js @@ -43,6 +43,7 @@ module.exports.test_stop_callback_and_event = function(test) { test.ok(this === client); test.equals(arguments.length, 0); test.equals(client.state, 'stopped'...
update mqlight.stop unittest to check that service returns null
mqlight_nodejs-mqlight
train
js
4b7f0f2e0dcb6abd784976febb1beaf95167eb49
diff --git a/edxval/admin.py b/edxval/admin.py index <HASH>..<HASH> 100644 --- a/edxval/admin.py +++ b/edxval/admin.py @@ -81,6 +81,8 @@ class TranscriptPreferenceAdmin(admin.ModelAdmin): class ThirdPartyTranscriptCredentialsStateAdmin(admin.ModelAdmin): + list_display = ('org', 'provider', 'exists', 'created',...
Update admin class for org transcript credentials. EDU-<I>
edx_edx-val
train
py
80c8ad3779bf7b7967d2623d6be77cf86b88cddd
diff --git a/tests/unit/algorithms/metrics/MercuryIntrusionTest.py b/tests/unit/algorithms/metrics/MercuryIntrusionTest.py index <HASH>..<HASH> 100644 --- a/tests/unit/algorithms/metrics/MercuryIntrusionTest.py +++ b/tests/unit/algorithms/metrics/MercuryIntrusionTest.py @@ -13,11 +13,13 @@ class MercuryIntrusionTest: ...
Updated MIP test to call run
PMEAL_OpenPNM
train
py
addad1566403dfe64d1268da971dfae7bbfbd81e
diff --git a/lib/gitkeeper/version.rb b/lib/gitkeeper/version.rb index <HASH>..<HASH> 100644 --- a/lib/gitkeeper/version.rb +++ b/lib/gitkeeper/version.rb @@ -1,3 +1,3 @@ module Gitkeeper - VERSION = "0.0.1" + VERSION = "0.0.7" end
Eureka: really works out of the box now, with VERSION <I> & following the README
lgs_gitkeeper
train
rb
655452cf17c0e01b1c9399dc3b04e15878e8953e
diff --git a/logger.go b/logger.go index <HASH>..<HASH> 100644 --- a/logger.go +++ b/logger.go @@ -34,14 +34,14 @@ type Logger struct { } func (l *Logger) Output(depth int, level string, message string, data ...Map) { - // get this as soon as possible - now := formattedDate.String() - buf := bufPool.Get() defer...
slightly delay getting time (sloppy anyway), to avoid getting it at all if not used
cactus_mlog
train
go
f4029dfab5ab37f4a8f510c8b82a418e235ef66f
diff --git a/aslack/__init__.py b/aslack/__init__.py index <HASH>..<HASH> 100644 --- a/aslack/__init__.py +++ b/aslack/__init__.py @@ -5,4 +5,4 @@ import logging logging.getLogger(__name__).addHandler(logging.NullHandler()) __author__ = 'Jonathan Sharpe' -__version__ = '0.0.8' +__version__ = '0.1.0'
Increment minor version number I reckon I've done enough for that
textbook_aslack
train
py
ac2023ef618b9d0428447beedc3c9986d3051ee1
diff --git a/lib/revenant.rb b/lib/revenant.rb index <HASH>..<HASH> 100644 --- a/lib/revenant.rb +++ b/lib/revenant.rb @@ -3,7 +3,7 @@ module Revenant # Register a new type of lock. # User code specifies which by setting lock_type = :something - # while configuring a Revenant::Process + # while configuring a ...
Correct a typo in rdoc
wilson_revenant
train
rb
f5e7707953aed78def2c2ff015a489419ac18f0a
diff --git a/lib/chars/char_set.rb b/lib/chars/char_set.rb index <HASH>..<HASH> 100644 --- a/lib/chars/char_set.rb +++ b/lib/chars/char_set.rb @@ -120,9 +120,9 @@ module Chars def random_distinct_bytes(length) if (length.kind_of?(Array) || length.kind_of?(Range)) #return Array.new(length.sort_by { ...
fixed fencepost error in random_distinct_bytes
postmodern_chars
train
rb
860677e3ae7fed7872f7be13a01b8812d55c4fc3
diff --git a/test/babelish/commands/test_command_csv2android.rb b/test/babelish/commands/test_command_csv2android.rb index <HASH>..<HASH> 100644 --- a/test/babelish/commands/test_command_csv2android.rb +++ b/test/babelish/commands/test_command_csv2android.rb @@ -16,6 +16,21 @@ class TestCSV2AndroidCommand < Test::Unit:...
Added test for csv2android with region
netbe_Babelish
train
rb
3294a18453c46ece218dd71d9b41329a70410838
diff --git a/km3pipe/logger.py b/km3pipe/logger.py index <HASH>..<HASH> 100644 --- a/km3pipe/logger.py +++ b/km3pipe/logger.py @@ -49,9 +49,21 @@ class LogIO(object): port=28777): self.node = node self.stream = stream + self.url = url + self.port = port self.so...
Retry once if socket connection is closed
tamasgal_km3pipe
train
py
fa4b0295b62c1ff60d28f267435bfa7d90db5b95
diff --git a/actionpack/lib/action_dispatch/middleware/public_exceptions.rb b/actionpack/lib/action_dispatch/middleware/public_exceptions.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/middleware/public_exceptions.rb +++ b/actionpack/lib/action_dispatch/middleware/public_exceptions.rb @@ -12,7 +12,...
content_type is already a Mime::Type object
rails_rails
train
rb
ea6b37202544925ef7f76898a64e2d4198205017
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,9 @@ if sys.version_info >= (3,): install_requires = ['numpy', 'pyserial>2.6', 'scipy'] +if sys.version_info < (2, 7): + print("python version < 2.7 is not supported") + ...
remove unnecessary dependency of setuptools_git and prevent usage of python<I>
poppy-project_pypot
train
py
d4155703a99e83f39eb952865854ae9c9790e56e
diff --git a/flask_mwoauth/__init__.py b/flask_mwoauth/__init__.py index <HASH>..<HASH> 100644 --- a/flask_mwoauth/__init__.py +++ b/flask_mwoauth/__init__.py @@ -24,7 +24,8 @@ class MWOAuth(object): default_return_to='index', consumer_key=None, consumer_secret=None, ...
Pass user_agent to mwoauth.handshaker Each tool running with this wrapper will yield "Sending requests with default User-Agent. Set 'user_agent' on mwoauth.flask.MWOAuth to quiet this message.". This commit should prevent that.
valhallasw_flask-mwoauth
train
py
a145c1b4afb880f077a1811c3aec29d40bbcad81
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb index <HASH>..<HASH> 100644 --- a/actionmailer/lib/action_mailer/base.rb +++ b/actionmailer/lib/action_mailer/base.rb @@ -334,8 +334,8 @@ module ActionMailer # and starts to use it. # * <tt>:openssl_verify_mode</tt>...
Cosmetic fixes in AM::Base docs. Missed spaces in OpenSSL constants enumerations. Injected at a<I>ad.
rails_rails
train
rb
38dcc42d53eb7ce1f0bb2b50e115e1a66d75f2c7
diff --git a/app/libraries/Jentil.php b/app/libraries/Jentil.php index <HASH>..<HASH> 100644 --- a/app/libraries/Jentil.php +++ b/app/libraries/Jentil.php @@ -82,7 +82,7 @@ final class Jentil protected function __construct() { $this->setup['loader'] = new Setup\Loader($this); - $this->setup['u...
disabled auto updater setup until this theme reaches stable release (ie <I> and up)
GrottoPress_jentil
train
php
c2f6dd93bb3291763605a4c88ab46b25bec83149
diff --git a/gems/aws-eventstream/spec/decoder_spec.rb b/gems/aws-eventstream/spec/decoder_spec.rb index <HASH>..<HASH> 100644 --- a/gems/aws-eventstream/spec/decoder_spec.rb +++ b/gems/aws-eventstream/spec/decoder_spec.rb @@ -72,7 +72,7 @@ module Aws it '#decode_chunk buffers partial prelude message' do ...
Update flakey test to read utf8
aws_aws-sdk-ruby
train
rb
d4cd7eed5b5792f630cceed976cc274172dbcc81
diff --git a/src/SetupCommand.php b/src/SetupCommand.php index <HASH>..<HASH> 100644 --- a/src/SetupCommand.php +++ b/src/SetupCommand.php @@ -69,7 +69,7 @@ class SetupCommand extends Command // DOMAIN PATH $this->_print('------------------------------'); $this->_lineBreak(); - ...
Clarify domain to be text domain Also updated project to project's for grammar
10quality_wpmvc-commands
train
php
e99add1490ae5df90b8d44f284b8be1bbeb698a9
diff --git a/src/Exscript/workqueue/WorkQueue.py b/src/Exscript/workqueue/WorkQueue.py index <HASH>..<HASH> 100644 --- a/src/Exscript/workqueue/WorkQueue.py +++ b/src/Exscript/workqueue/WorkQueue.py @@ -20,12 +20,14 @@ class WorkQueue(object): This class implements the asynchronous workqueue and is the main API ...
Exscript.workqueue: replace **kwargs by explicit keywords.
knipknap_exscript
train
py
3027f5ca85c63023a310a03141015bfe4a607d19
diff --git a/prow/kube/types.go b/prow/kube/types.go index <HASH>..<HASH> 100644 --- a/prow/kube/types.go +++ b/prow/kube/types.go @@ -133,6 +133,27 @@ type Container struct { Resources Resources `json:"resources,omitempty"` SecurityContext *SecurityContext `json:"securityContext,omitempty"` VolumeMo...
Add support for ProwJob lifecycle hooks
kubernetes_test-infra
train
go
8dcd197436f3620ef63a8e25eaba38530e828f12
diff --git a/GPy/models/GP.py b/GPy/models/GP.py index <HASH>..<HASH> 100644 --- a/GPy/models/GP.py +++ b/GPy/models/GP.py @@ -253,8 +253,9 @@ class GP(model): Xnew, xmin, xmax = x_frame1D(Xu, plot_limits=plot_limits) m, var, lower, upper = self.predict(Xnew, which_parts=which_parts) - ...
allowed GP models to plot multiple outputs (in 1D at least)
SheffieldML_GPy
train
py
ca5c6e31609897885514c231ca9e18fcac4e0968
diff --git a/cmd/erasure-metadata.go b/cmd/erasure-metadata.go index <HASH>..<HASH> 100644 --- a/cmd/erasure-metadata.go +++ b/cmd/erasure-metadata.go @@ -102,7 +102,7 @@ func (fi FileInfo) IsValid() bool { func (fi FileInfo) ToObjectInfo(bucket, object string) ObjectInfo { object = decodeDirObject(object) version...
fix: translate empty versionID string to null version where appropriate (#<I>) We store the null version as empty string. We should translate it to null version for bucket with version suspended too.
minio_minio
train
go
02d67b65c85afabcd77c59090ac6ed9afa31b3dc
diff --git a/bypy.py b/bypy.py index <HASH>..<HASH> 100755 --- a/bypy.py +++ b/bypy.py @@ -44,7 +44,7 @@ from __future__ import print_function from __future__ import division ### special variables that say about this module -__version__ = '1.2.15' +__version__ = '1.2.16' ### return (error) codes # they are put ...
Version bumped to <I>
houtianze_bypy
train
py
3ba65ee094086e7c8bad9d1dfcc14b7a7fe0b3f6
diff --git a/src/GitElephant/Command/Caller/Caller.php b/src/GitElephant/Command/Caller/Caller.php index <HASH>..<HASH> 100755 --- a/src/GitElephant/Command/Caller/Caller.php +++ b/src/GitElephant/Command/Caller/Caller.php @@ -92,7 +92,13 @@ class Caller extends AbstractCaller if (is_null($cwd) || !is_dir($cwd...
Fix #<I> by introducing a case distinction between Symfony Process versions
matteosister_GitElephant
train
php
ff53df96875de84ee02895772b59448f35a5a0c2
diff --git a/lib/arel/nodes/delete_statement.rb b/lib/arel/nodes/delete_statement.rb index <HASH>..<HASH> 100644 --- a/lib/arel/nodes/delete_statement.rb +++ b/lib/arel/nodes/delete_statement.rb @@ -1,7 +1,8 @@ # frozen_string_literal: true module Arel module Nodes - class DeleteStatement < Arel::Nodes::Binary ...
Delete is not a NodeExpression, change parent This requires a little cut and paste from the Binary node, but it is used in different parts of sql
rails_rails
train
rb
e00ed0efe23868dcb5d3b585832b0c241c73f925
diff --git a/lib/models/make.js b/lib/models/make.js index <HASH>..<HASH> 100644 --- a/lib/models/make.js +++ b/lib/models/make.js @@ -53,9 +53,7 @@ module.exports = function( environment, mongoInstance ) { }, thumbnail: { type: String, - es_indexed: true, - required: true, - validate: v...
[#<I>] Thumbnail no longer required.
mozilla_MakeAPI
train
js
fe3a6c820990fd8f809d91fbc7437fb4232d3b2b
diff --git a/openid.php b/openid.php index <HASH>..<HASH> 100644 --- a/openid.php +++ b/openid.php @@ -293,7 +293,9 @@ class LightOpenID protected function request($url, $method='GET', $params=array()) { - if(function_exists('curl_init') && !ini_get('safe_mode') && !ini_get('open_basedir')) { + ...
A compatibility fix for certain php configurations.
Mewp_lightopenid
train
php
c048a019f69d8e7b44f50576c7d1d35765b0aa58
diff --git a/security/Member.php b/security/Member.php index <HASH>..<HASH> 100644 --- a/security/Member.php +++ b/security/Member.php @@ -421,9 +421,12 @@ class Member extends DataObject implements TemplateGlobalProvider { $this->extend('memberLoggedOut'); $this->RememberLoginToken = null; - Cookie::set('alc_...
BUGFIX Avoid infinite redirection when logging out and when showing a custom login page after displaying the draft version of a page.
silverstripe_silverstripe-framework
train
php,php
ad83f87b1fe2c9745bba159ae1bd1fa684e492ab
diff --git a/src/Config.php b/src/Config.php index <HASH>..<HASH> 100644 --- a/src/Config.php +++ b/src/Config.php @@ -563,7 +563,7 @@ class Config $contentType['slug'] = Slugify::create()->slugify($contentType['name']); } if (!isset($contentType['name'])) { - $contentType['nam...
Should be case insensitive, too.
bolt_bolt
train
php
b4920526128aff056f0a136acf189456031024eb
diff --git a/activeweb/src/main/java/org/javalite/activeweb/RequestDispatcher.java b/activeweb/src/main/java/org/javalite/activeweb/RequestDispatcher.java index <HASH>..<HASH> 100644 --- a/activeweb/src/main/java/org/javalite/activeweb/RequestDispatcher.java +++ b/activeweb/src/main/java/org/javalite/activeweb/RequestD...
#<I> Injector should not be set in case of testing
javalite_activejdbc
train
java
dd11e4eee6eaaa5cd049f287162cc6f6252481f3
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -256,7 +256,7 @@ gulp.task('build-externs', repeatTaskForAllLocales( 'build-firebaseui-js-$', ['build-externs', 'build-ts', 'build-soy'], - buildFirebaseUiJs, + buildFirebaseUiJs ); // Bundles ...
remove extra comma in gulp
firebase_firebaseui-web
train
js
397bc6c0aff9037fd74eb7839b1e72ef0c6713cb
diff --git a/src/Annotation/Link.php b/src/Annotation/Link.php index <HASH>..<HASH> 100644 --- a/src/Annotation/Link.php +++ b/src/Annotation/Link.php @@ -12,16 +12,6 @@ namespace BEAR\Resource\Annotation; */ final class Link { - const REL = 'rel'; - - const SRC = 'src'; - - const HREF = 'href'; - - con...
remove Link constants and src prop
bearsunday_BEAR.Resource
train
php
f50369fc6646d3d6f0e988a7de19c7c37948c06f
diff --git a/src/Product/CatalogImportApiRequestHandler.php b/src/Product/CatalogImportApiRequestHandler.php index <HASH>..<HASH> 100644 --- a/src/Product/CatalogImportApiRequestHandler.php +++ b/src/Product/CatalogImportApiRequestHandler.php @@ -92,7 +92,7 @@ class CatalogImportApiRequestHandler extends ApiRequestHand...
Issue #<I>: Fix typo in error message
lizards-and-pumpkins_catalog
train
php
beaf0af084c1514b6c4269f110aedb9c3b2ccd73
diff --git a/js/util.go b/js/util.go index <HASH>..<HASH> 100644 --- a/js/util.go +++ b/js/util.go @@ -41,3 +41,19 @@ func throw(vm *otto.Otto, v interface{}) { } panic(v) } + +func newSnippetRunner(src string) (*Runner, error) { + rt, err := New() + if err != nil { + return nil, err + } + rt.VM.Set("require", rt...
[dev] Test util: func to make a snippet runner
loadimpact_k6
train
go
4b560a1a8d9a76f6f27b5bcb1c076c9fd3783c02
diff --git a/paging_result.go b/paging_result.go index <HASH>..<HASH> 100644 --- a/paging_result.go +++ b/paging_result.go @@ -115,6 +115,10 @@ func (pr *PagingResult) navigate(url *string) (noMore bool, err error) { return } + if pr.paging.Paging != nil { + pr.paging.Paging.Next = "" + pr.paging.Paging.Previo...
fix infinite loop in paging by clearing Next/Previous fields from previous query
huandu_facebook
train
go
55ec438581c5da28354fe4c5d00050903a2831f2
diff --git a/isso/js/tests/unit/isso.test.js b/isso/js/tests/unit/isso.test.js index <HASH>..<HASH> 100644 --- a/isso/js/tests/unit/isso.test.js +++ b/isso/js/tests/unit/isso.test.js @@ -18,7 +18,7 @@ * Also, untangle Postbox functions from DOM element */ -test('Editorify text area', () => { +test.skip('Editorify...
js: tests: Skip outdated Postbox editorify() test
posativ_isso
train
js
2e7c56dacc863ee2c0d604bc748a2799ecd4be52
diff --git a/internal/qtls/go118.go b/internal/qtls/go118.go index <HASH>..<HASH> 100644 --- a/internal/qtls/go118.go +++ b/internal/qtls/go118.go @@ -1,3 +1,5 @@ // +build go1.18 -"quic-go doesn't build on Go 1.18 yet." +package qtls + +var _ int = "quic-go doesn't build on Go 1.18 yet."
prevent go mod vendor from stumbling over the Go <I> file
lucas-clemente_quic-go
train
go
8734b749e9f4a75f4ed9f39cc98c4323558e5407
diff --git a/src/lib/mocha/mocha-wrapper.js b/src/lib/mocha/mocha-wrapper.js index <HASH>..<HASH> 100644 --- a/src/lib/mocha/mocha-wrapper.js +++ b/src/lib/mocha/mocha-wrapper.js @@ -3,7 +3,8 @@ var Mocha = require('mocha'), path = require('path'), exit = require('exit'), glob = require('glob'), - ...
Fixes mocha watchTags being always added
TheBrainFamily_chimpy
train
js
88ed5d349958b69898496414ee115634864dd98b
diff --git a/modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php b/modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_event/modules/so...
Issue #<I> by tBKoT: Fix warning when confing not exist
goalgorilla_open_social
train
php
56e4d581483786532c45b079a0bc8050a686a7ee
diff --git a/vraptor-core/src/main/java/br/com/caelum/vraptor4/extensions/ControllersExtension.java b/vraptor-core/src/main/java/br/com/caelum/vraptor4/extensions/ControllersExtension.java index <HASH>..<HASH> 100644 --- a/vraptor-core/src/main/java/br/com/caelum/vraptor4/extensions/ControllersExtension.java +++ b/vrap...
Using equals instead == operator
caelum_vraptor4
train
java
014d22f74225106d86cfdc1bcdfcda79493b6e7b
diff --git a/src/SimpleThings/EntityAudit/AuditReader.php b/src/SimpleThings/EntityAudit/AuditReader.php index <HASH>..<HASH> 100755 --- a/src/SimpleThings/EntityAudit/AuditReader.php +++ b/src/SimpleThings/EntityAudit/AuditReader.php @@ -457,7 +457,7 @@ class AuditReader $id = array($class->identifier[0] ...
Replaced `[]` with `array()` for php <I> compatibility
simplethings_EntityAuditBundle
train
php
6bf201f92030fee677218c64faa7628170319e9f
diff --git a/build/build.py b/build/build.py index <HASH>..<HASH> 100755 --- a/build/build.py +++ b/build/build.py @@ -49,7 +49,7 @@ import shakaBuildHelpers common_closure_opts = [ - '--language_in', 'ECMASCRIPT5', + '--language_in', 'ECMASCRIPT6', '--language_out', 'ECMASCRIPT3', '--jscomp_erro...
[ES6] Allow ES6 input in the Closure Compiler Note that until we replace gjslint, the linter will still not accept ES6 syntax. So we cannot yet merge any commits which use ES6. But this should allow us to start experimenting with ES6 locally by bypassing the old linter. Issue #<I> Change-Id: Ic<I>f<I>a<I>f<I>b0a<I...
google_shaka-player
train
py
57c3b26765450fcaee883624990eb4dc05c18d94
diff --git a/codespell_lib/_codespell.py b/codespell_lib/_codespell.py index <HASH>..<HASH> 100755 --- a/codespell_lib/_codespell.py +++ b/codespell_lib/_codespell.py @@ -631,9 +631,11 @@ def main(*args): del dirs[:] continue for file_ in files: - ...
Extend --skip to match globs across full paths. Closes #<I> (#<I>) * Add a test for skipping globs with directory and filename in * Forcing a Travis build * Tidy the Travis force * Skip paths with the glob mathing too
codespell-project_codespell
train
py,py
ccf06f2216d8da578546ea9e0f7305b1bd637fe2
diff --git a/src/crypto/verification/request/ToDeviceChannel.js b/src/crypto/verification/request/ToDeviceChannel.js index <HASH>..<HASH> 100644 --- a/src/crypto/verification/request/ToDeviceChannel.js +++ b/src/crypto/verification/request/ToDeviceChannel.js @@ -179,7 +179,9 @@ export class ToDeviceChannel { c...
don't cancel ourselves when selecting a self-verification partner
matrix-org_matrix-js-sdk
train
js
fd37e44854b9d27a75cd99217be2804c939201ef
diff --git a/telethon/utils.py b/telethon/utils.py index <HASH>..<HASH> 100644 --- a/telethon/utils.py +++ b/telethon/utils.py @@ -678,7 +678,8 @@ def _get_extension(file): # Note: ``file.name`` works for :tl:`InputFile` and some `IOBase` return _get_extension(file.name) else: - return '' ...
Fix is_image not considering MessageMedia objects This was causing albums with MessageMedia objects to fail.
LonamiWebs_Telethon
train
py
a80375dfbb46d66164c9a6050d032a55bd6b4d11
diff --git a/src/main/java/net/magik6k/jwwf/core/JwwfServer.java b/src/main/java/net/magik6k/jwwf/core/JwwfServer.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/magik6k/jwwf/core/JwwfServer.java +++ b/src/main/java/net/magik6k/jwwf/core/JwwfServer.java @@ -1,6 +1,7 @@ package net.magik6k.jwwf.core; import...
Added ability to get plugins contained in server instance
magik6k_JWWF
train
java