hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
51f8320df7bf9ab0d549045883d3a6ad398411a9
diff --git a/filters/unit.js b/filters/unit.js index <HASH>..<HASH> 100644 --- a/filters/unit.js +++ b/filters/unit.js @@ -6,6 +6,7 @@ module.exports = function unit (value, unitName, postfix) { if (isNaN(value)) { return value + ' ' + unitName } - const shouldPostFix = (value !== 0) && (1 < Math.abs(value)...
fix(events): allow multiple handlers for the same event
nx-js_framework
train
8106606580a4bc64cd820d4f50fdb2fa6b6c1041
diff --git a/src/geo/leaflet/leaflet-layer-view-factory.js b/src/geo/leaflet/leaflet-layer-view-factory.js index <HASH>..<HASH> 100644 --- a/src/geo/leaflet/leaflet-layer-view-factory.js +++ b/src/geo/leaflet/leaflet-layer-view-factory.js @@ -30,9 +30,10 @@ var canMapBeRenderedClientSide = function (mapModel, settingsM...
Estimated number of features per layer
CartoDB_carto.js
train
5dd6c87a53f3a6c5bfa6ea384598213c49402056
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -36,11 +36,8 @@ setup(name='audioread', packages=['audioread'], - setup_requires=[ - 'pytest-runner' - ], - tests_require=[ + 'pytest-runner', 'pytest' ],
Correct pytest-runner location in setup.py Moved pytest-runner from setup_requires to tests_require. It is the tests that require pytest-runner.
beetbox_audioread
train
cb2e0b41e32f3d74374cdb0b4d75c26caea41e39
diff --git a/test/Utils/UtilsValidator.test.js b/test/Utils/UtilsValidator.test.js index <HASH>..<HASH> 100644 --- a/test/Utils/UtilsValidator.test.js +++ b/test/Utils/UtilsValidator.test.js @@ -40,7 +40,7 @@ describe('#UtilsValidator', () => { const params = UtilsValidator.CURRENCY_CONVERSION( { curren...
Chnaged checking for null in validator tests to undefined. No reason to check for null.
Travelport-Ukraine_uapi-json
train
971973da44fb433d17a5f8410be80e474bc14869
diff --git a/lib/double_entry/account_balance.rb b/lib/double_entry/account_balance.rb index <HASH>..<HASH> 100644 --- a/lib/double_entry/account_balance.rb +++ b/lib/double_entry/account_balance.rb @@ -33,5 +33,22 @@ module DoubleEntry scope = scope.lock(true) if options[:lock] scope.first end + + ...
Move scopes_with_minimum_balance_for_account to AccountBalance
envato_double_entry
train
12baaa8997fcebc82301152811b65913675c2eb6
diff --git a/yaml/src/main/java/com/opentext/ia/yaml/configuration/InsertDefaultReferences.java b/yaml/src/main/java/com/opentext/ia/yaml/configuration/InsertDefaultReferences.java index <HASH>..<HASH> 100644 --- a/yaml/src/main/java/com/opentext/ia/yaml/configuration/InsertDefaultReferences.java +++ b/yaml/src/main/ja...
Fix normalization of YAML configuration
Enterprise-Content-Management_infoarchive-sip-sdk
train
4a99da88604846b3aeb10823bb4bb32e1d86ffaf
diff --git a/pydle/client.py b/pydle/client.py index <HASH>..<HASH> 100644 --- a/pydle/client.py +++ b/pydle/client.py @@ -9,7 +9,7 @@ from . import connection from . import protocol __all__ = [ 'Error', 'AlreadyInChannel', 'NotInChannel', 'BasicClient' ] -PING_TIMEOUT = 180 +PING_TIMEOUT = 720 DEFAULT_NICKNAME = ...
Increase client-side ping timeout.
Shizmob_pydle
train
78dc92e88a7106c51962d6bb491b3955106e34a8
diff --git a/versatileimagefield/static/versatileimagefield/js/versatileimagefield-djangoadmin.js b/versatileimagefield/static/versatileimagefield/js/versatileimagefield-djangoadmin.js index <HASH>..<HASH> 100644 --- a/versatileimagefield/static/versatileimagefield/js/versatileimagefield-djangoadmin.js +++ b/versatilei...
fix(widget): ensure image is loaded before initializing widget jquery.ready doesn't take into account the loading of images. If the images are not loaded, we get wrong image dimension causing the PPOI widget to fail.
respondcreate_django-versatileimagefield
train
73172a9502eabba8e6a2efabe05223f5fa10cbe2
diff --git a/streamcorpus_pipeline/stages.py b/streamcorpus_pipeline/stages.py index <HASH>..<HASH> 100644 --- a/streamcorpus_pipeline/stages.py +++ b/streamcorpus_pipeline/stages.py @@ -413,5 +413,6 @@ class PipelineStages(StageRegistry): self[name] = stage_constructor except: ...
adding a log message about ignoring import failure of stage
trec-kba_streamcorpus-pipeline
train
67b7e2ddfb51eefc22bd70252ac73ed04908d6c1
diff --git a/dataflows/base/datastream_processor.py b/dataflows/base/datastream_processor.py index <HASH>..<HASH> 100644 --- a/dataflows/base/datastream_processor.py +++ b/dataflows/base/datastream_processor.py @@ -1,6 +1,7 @@ import logging import itertools import collections +import copy from datapackage import...
Prevent datapackage leaking across steps
datahq_dataflows
train
dab0a05f16641200c22e4368c9db9cc76c6bcdcb
diff --git a/pyrogram/client/client.py b/pyrogram/client/client.py index <HASH>..<HASH> 100644 --- a/pyrogram/client/client.py +++ b/pyrogram/client/client.py @@ -285,6 +285,28 @@ class Client(Methods, BaseClient): self.is_started = False self.session.stop() + def signal_handler(self, *args): + ...
Move idle() and signal_handler() definitions near stop()
pyrogram_pyrogram
train
3d5e2f4ea82ffc55a731d241a4dafc82ccffc08e
diff --git a/lib/object-tools.js b/lib/object-tools.js index <HASH>..<HASH> 100644 --- a/lib/object-tools.js +++ b/lib/object-tools.js @@ -246,12 +246,12 @@ function extract(object, query){ /** Returns a new object containing only the selected fields. See also {@link module:object-tools.without}. @param {object} - t...
.select should work with a single field
75lb_object-get
train
933853ead630b153228ca820aa37bedc252ba7c5
diff --git a/crispy_forms/templatetags/crispy_forms_field.py b/crispy_forms/templatetags/crispy_forms_field.py index <HASH>..<HASH> 100644 --- a/crispy_forms/templatetags/crispy_forms_field.py +++ b/crispy_forms/templatetags/crispy_forms_field.py @@ -41,7 +41,7 @@ def is_checkboxselectmultiple(field): @register.filt...
Check for FileInput instead of ClearableFileInput I'm reopening #<I> as `form-control` CSS class is added to file inputs if they are not clearable
django-crispy-forms_django-crispy-forms
train
d1d8c493d93922bef791f6f878a133b2c636a1fb
diff --git a/src/main/java/com/urswolfer/gerrit/client/rest/http/changes/RevisionApiRestClient.java b/src/main/java/com/urswolfer/gerrit/client/rest/http/changes/RevisionApiRestClient.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/urswolfer/gerrit/client/rest/http/changes/RevisionApiRestClient.java +++ b/src/...
Add support for "Submit Preview" This adds support for the "Submit Preview" feature which can be used to download a file containing thin bundles of all modified projects if this change was submitted.
uwolfer_gerrit-rest-java-client
train
1194aa8320769dd43a2ff10b31e6bcc7e79dddf7
diff --git a/src/main/org/openscience/cdk/AtomType.java b/src/main/org/openscience/cdk/AtomType.java index <HASH>..<HASH> 100644 --- a/src/main/org/openscience/cdk/AtomType.java +++ b/src/main/org/openscience/cdk/AtomType.java @@ -28,12 +28,12 @@ */ package org.openscience.cdk; -import java.io.Serializable; - imp...
Marked the getter for VdW as deprectated since these values should now come from the PeriodicTable class git-svn-id: <URL>
cdk_cdk
train
29d0e267107ebb827cc59c76fac8e6a56d0047ab
diff --git a/app/Config/bootstrap.php b/app/Config/bootstrap.php index <HASH>..<HASH> 100644 --- a/app/Config/bootstrap.php +++ b/app/Config/bootstrap.php @@ -98,12 +98,12 @@ Configure::write('Dispatcher.filters', array( */ App::uses('CakeLog', 'Log'); CakeLog::config('debug', array( - 'engine' => 'FileLog', + 'eng...
Dropping 'Log' suffix from log configs as per change in cb<I>dbb<I>. Reverts regressive change done in 7e<I>a<I>.
cakephp_cakephp
train
c118dc6e790b9206ec77912342d04859d0391e37
diff --git a/src/protocol/error.js b/src/protocol/error.js index <HASH>..<HASH> 100644 --- a/src/protocol/error.js +++ b/src/protocol/error.js @@ -520,6 +520,50 @@ const errorCodes = [ message: 'The consumer group has reached its max size. It already has the configured maximum number of members', }, + {...
Add new protocol errors None of these new errors have any impact that would currently require code changes, as they are all in relation to functionality that KafkaJS doesn't currently have. The one exception being INVALID_RECORD, which we currently could get when producing, in which case we would just log that it's a...
tulios_kafkajs
train
7c609265921bf3f36fe45dfc440bce1d76d3eb2a
diff --git a/src/SessionInterface.php b/src/SessionInterface.php index <HASH>..<HASH> 100644 --- a/src/SessionInterface.php +++ b/src/SessionInterface.php @@ -463,7 +463,7 @@ interface SessionInterface * @param boolean $includeSubRelationshipTypes * @param RelationshipDirection $relationshipDirection ...
Adjust SessionInterface to make OperationContext optional Summary: Context will be read from defaults if not provided. The interface must be relaxed to reflect this (already supported by the Session implementation). Reviewers: dkd-goslar Reviewed By: dkd-goslar Differential Revision: <URL>
dkd_php-cmis-client
train
8d1e07ff19fccdbfa308ad720ed53f3461792533
diff --git a/bench/format/plot.py b/bench/format/plot.py index <HASH>..<HASH> 100644 --- a/bench/format/plot.py +++ b/bench/format/plot.py @@ -78,7 +78,7 @@ def until(line, data): return False #iterate through lines while they match (and there's data) -def read_while(lines, data): +def take_while(lines, data): ...
Fix rdb stat parsing. RDB stats now parse correctly.
rethinkdb_rethinkdb
train
9f9e5ebb800a15cc3fc968658cd483361f13443c
diff --git a/api/extjs/browser-part/e-br-explore.js b/api/extjs/browser-part/e-br-explore.js index <HASH>..<HASH> 100644 --- a/api/extjs/browser-part/e-br-explore.js +++ b/api/extjs/browser-part/e-br-explore.js @@ -921,6 +921,7 @@ var teqId; try { + // console.log(tEQXT); teqId = tiaEJ.s...
Fix for dot escape in xtype names.
Dzenly_tia
train
343608611e8109d69c2b018a282d63f106329886
diff --git a/project_generator/exporters/uvision_definitions.py b/project_generator/exporters/uvision_definitions.py index <HASH>..<HASH> 100644 --- a/project_generator/exporters/uvision_definitions.py +++ b/project_generator/exporters/uvision_definitions.py @@ -20,9 +20,8 @@ class uVisionDefinitions(): try: ...
uvision def - error uncommented, mcu has to be defined, via board or mcu
project-generator_project_generator
train
3cd2b3925ab97ff736b329da7b3f5eac42557ca0
diff --git a/src/models/relations.js b/src/models/relations.js index <HASH>..<HASH> 100644 --- a/src/models/relations.js +++ b/src/models/relations.js @@ -121,12 +121,14 @@ export default class Relations extends EventEmitter { return; } + this._relations.delete(event); + if (this...
re-evaluate last replacement on redaction and local echo cancellation
matrix-org_matrix-js-sdk
train
07fd901e7eae4fcf847faa6cdb485e8b242fe9e5
diff --git a/api/opentrons/server/helpers.py b/api/opentrons/server/helpers.py index <HASH>..<HASH> 100644 --- a/api/opentrons/server/helpers.py +++ b/api/opentrons/server/helpers.py @@ -62,10 +62,11 @@ def get_upload_proof_robot(robot): 'move_plunger', 'reset', 'run', - 'simulate' + ...
removes explicit self arg in robot mock calls (#<I>) * removes explicit self arg in robot mock calls * also adds send_to_app to blacklist * removes dead code; reverts server child_process shutdown code * removes unused var * run unit tests on mac/linux but not windows * fix travis make call * fix tra...
Opentrons_opentrons
train
a46e6331fc29d56e536684b880f85d3c203e2ce4
diff --git a/admin/jqadm/config/admin/jqadm/resource.php b/admin/jqadm/config/admin/jqadm/resource.php index <HASH>..<HASH> 100644 --- a/admin/jqadm/config/admin/jqadm/resource.php +++ b/admin/jqadm/config/admin/jqadm/resource.php @@ -306,6 +306,15 @@ return [ */ 'groups' => ['admin', 'super'], ], + 'p...
Added documentation for customer property permissions
aimeos_ai-admin-jqadm
train
1b77cf59d2ee96c64c6e667905b958426f43f737
diff --git a/yotta/test/cli/owners.py b/yotta/test/cli/owners.py index <HASH>..<HASH> 100644 --- a/yotta/test/cli/owners.py +++ b/yotta/test/cli/owners.py @@ -48,18 +48,18 @@ class TestCLIOwners(unittest.TestCase): def test_listOwners(self): stdout, stderr, statuscode = cli.run(['-n', 'owners', 'ls'], c...
ensure tests don't break if not logged in, and if main.py hasn't been loaded
ARMmbed_yotta
train
5e3113fd24a48074ff93698db9a18bf1a58873ad
diff --git a/pyani/scripts/parsers.py b/pyani/scripts/parsers.py index <HASH>..<HASH> 100644 --- a/pyani/scripts/parsers.py +++ b/pyani/scripts/parsers.py @@ -196,6 +196,30 @@ def build_parser_classify(subps, parents=None): parser.set_defaults(func=subcommands.subcmd_classify) +def build_parser_plot(subps, par...
add plot subcommand to parser
widdowquinn_pyani
train
d38854a4fc5a8fc3316f43883420ffc4507cc0bf
diff --git a/tensorflow_probability/python/bijectors/iterated_sigmoid_centered.py b/tensorflow_probability/python/bijectors/iterated_sigmoid_centered.py index <HASH>..<HASH> 100644 --- a/tensorflow_probability/python/bijectors/iterated_sigmoid_centered.py +++ b/tensorflow_probability/python/bijectors/iterated_sigmoid_c...
Actually, no reason not to allow injecting a 0-D vector into a 1-D simplex (which is the number 1) with IteratedSigmidCentered. Modify `inverse_event_shape` to accept a 1-D output shape instead of raising an exception. PiperOrigin-RevId: <I>
tensorflow_probability
train
18bad0885387d2a70dca0fdc6ddb53986fb7fc52
diff --git a/Editable.php b/Editable.php index <HASH>..<HASH> 100644 --- a/Editable.php +++ b/Editable.php @@ -53,6 +53,8 @@ class Editable extends InputWidget */ public function init() { + parent::init(); + if ($this->url === null) { throw new InvalidConfigException("You mu...
add call the parent implementation of init() at the beginning of init() method.
yii2mod_yii2-editable
train
a7e6d07941908835f1371dd62b07d8241398ff4f
diff --git a/config.go b/config.go index <HASH>..<HASH> 100644 --- a/config.go +++ b/config.go @@ -6,8 +6,10 @@ import ( // Config is the session manager config type Config struct { - Store Store - Secret []byte // session id salt when put to store + Store Store + + // Secret is the salt for hash session id before...
refactor hash id
moonrhythm_session
train
39268579764f42c5548e7610fea6d0d33d1fda3a
diff --git a/spec/ransack/predicate_spec.rb b/spec/ransack/predicate_spec.rb index <HASH>..<HASH> 100644 --- a/spec/ransack/predicate_spec.rb +++ b/spec/ransack/predicate_spec.rb @@ -13,7 +13,7 @@ module Ransack expect { subject.result }.to_not raise_error end it "escapes '%', '.' and '\\\\' in v...
Use Object#send to comply with Ruby <I>
activerecord-hackery_ransack
train
838d597983362b077ccb7686a15f8a7382ecaa01
diff --git a/dvc/__init__.py b/dvc/__init__.py index <HASH>..<HASH> 100644 --- a/dvc/__init__.py +++ b/dvc/__init__.py @@ -7,7 +7,7 @@ import os import warnings -VERSION_BASE = '0.19.15' +VERSION_BASE = '0.20.0' __version__ = VERSION_BASE PACKAGEPATH = os.path.abspath(os.path.dirname(__file__))
dvc: bump to <I>
iterative_dvc
train
0b9958745977bb245b6a4b35c120edf4e645fccf
diff --git a/engine/loggers/logger.js b/engine/loggers/logger.js index <HASH>..<HASH> 100644 --- a/engine/loggers/logger.js +++ b/engine/loggers/logger.js @@ -30,10 +30,12 @@ function logToFileLn(msg) { * @param msg * @param noConsole */ -exports.log = function (msg) { +exports.log = function (msg, dontWriteToFil...
--forcelogactions now does not affect file logs, only console.
Dzenly_tia
train
83002fa038e4482642ee441072fab647a04a504f
diff --git a/instana/fsm.py b/instana/fsm.py index <HASH>..<HASH> 100644 --- a/instana/fsm.py +++ b/instana/fsm.py @@ -124,7 +124,7 @@ class Fsm(object): cmdinfo = cmd.read() cmdline = cmdinfo.split('\x00') else: - cmdline = [os.path.basename(sys.executable)] + ...
Better non-*nix process command line handling.
instana_python-sensor
train
b4c9d8dfc6f1972e352cd863a3054076c2af2122
diff --git a/src/ConsoleColor.php b/src/ConsoleColor.php index <HASH>..<HASH> 100644 --- a/src/ConsoleColor.php +++ b/src/ConsoleColor.php @@ -201,10 +201,15 @@ class ConsoleColor public function isSupported() { if (DIRECTORY_SEPARATOR === '\\') { - return getenv('ANSICON') !== false || ge...
Expand Windows support PHP <I> added support for new features of the Windows <I> console This commit detects this support on STDOUT and acts accordingly
JakubOnderka_PHP-Console-Color
train
dce90428e59adcb506532b25a6b0212a49fbc9b9
diff --git a/src/base.js b/src/base.js index <HASH>..<HASH> 100644 --- a/src/base.js +++ b/src/base.js @@ -294,9 +294,7 @@ class Service { .then((result) => this._getOrFind(id, findParams)); } else { return model - .findAndModify({ - query: omit(query, ...
Fix findAndModify to findOneAndUpdate
MostlyJS_mostly-feathers-mongoose
train
5aa248b01301b705efb41cf495abd5398ed6a16f
diff --git a/generator/lib/builder/om/QueryBuilder.php b/generator/lib/builder/om/QueryBuilder.php index <HASH>..<HASH> 100644 --- a/generator/lib/builder/om/QueryBuilder.php +++ b/generator/lib/builder/om/QueryBuilder.php @@ -305,9 +305,6 @@ abstract class ".$this->getClassname()." extends ModelCriteria return \$th...
[<I>] Removed debug code
propelorm_Propel
train
d270b352353415f85fa4baef6fca69c8cd40446f
diff --git a/lib/mqtt/packet.rb b/lib/mqtt/packet.rb index <HASH>..<HASH> 100644 --- a/lib/mqtt/packet.rb +++ b/lib/mqtt/packet.rb @@ -60,6 +60,11 @@ module MQTT # Parse the header and create a new packet object of the correct type # The header is removed from the buffer passed into this function def sel...
Added check that packet is longer than the minimum length
njh_ruby-mqtt
train
42633ec5323e4952e7a93089869b3858408eb04c
diff --git a/spec/mocker_spec.rb b/spec/mocker_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mocker_spec.rb +++ b/spec/mocker_spec.rb @@ -1,6 +1,21 @@ require 'spec_helper' describe Fauxhai::Mocker do + describe "#data" do + let(:options) { {} } + subject { described_class.new({github_fetching: false}.merge...
Add back a few tests for Mocker#data just to have them.
chefspec_fauxhai
train
a151d2495198dcbd73a6681d43fcf1698f3d5600
diff --git a/telethon/client/telegrambaseclient.py b/telethon/client/telegrambaseclient.py index <HASH>..<HASH> 100644 --- a/telethon/client/telegrambaseclient.py +++ b/telethon/client/telegrambaseclient.py @@ -308,7 +308,8 @@ class TelegramBaseClient(abc.ABC): # Update state (for catching up after a disconn...
Fix StateCache accessing None to_id and add logging (#<I>)
LonamiWebs_Telethon
train
f56a9ca3a5b02898c41de84533f23d080ea2b7ef
diff --git a/pycm/pycm_func.py b/pycm/pycm_func.py index <HASH>..<HASH> 100644 --- a/pycm/pycm_func.py +++ b/pycm/pycm_func.py @@ -20,6 +20,20 @@ def isfile(f): def missclassification_calc(classes,table,i,j,subject_class): + ''' + This function calculate misclassification probability of classifying + :par...
doc : new functions docstring added #<I>
sepandhaghighi_pycm
train
f7f390a8cfaaabcc6416a94a375e60955b31f9d0
diff --git a/changelog b/changelog index <HASH>..<HASH> 100644 --- a/changelog +++ b/changelog @@ -2,6 +2,7 @@ * Stack Exchange authentication via OAuth 2.0 (stackoverflow.com, askubuntu.com, etc.). * Support response in gzip. * differentiate OAuth1 Access token, OAuth 1 Request Token and OAuth 2 Access token, ma...
OAuth 1 APIs can choose whether to pass empty oauth_token param in requests
scribejava_scribejava
train
900bce4faabc586fbba58d102b77eeec0d22e8f6
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,7 @@ This is based on Aura.Cli_Project 2.0. ~~~ generate migration ... Generates migration file skeleton. migrate ... Run migrations. -migrate files ... List all migration files. -migrate curve...
Rename "migrate files" to "migrate status"
kenjis_codeigniter-cli
train
85d7dafd35b48801d0cc5be8cac407c3fea9b128
diff --git a/src/com/google/javascript/jscomp/PolymerClassDefinition.java b/src/com/google/javascript/jscomp/PolymerClassDefinition.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/PolymerClassDefinition.java +++ b/src/com/google/javascript/jscomp/PolymerClassDefinition.java @@ -111,7 +111,6 @@ f...
Polymer Pass: Use more specific source info when creating new nodes. ------------- Created by MOE: <URL>
google_closure-compiler
train
a0418db73c2d5750d74db62aa6894c856f3a7211
diff --git a/src/Notifier.php b/src/Notifier.php index <HASH>..<HASH> 100644 --- a/src/Notifier.php +++ b/src/Notifier.php @@ -4,6 +4,7 @@ namespace Hipchat; use GuzzleHttp\Client; use InvalidArgumentException; use SebastianBergmann\Exporter\Exception; +use SplObjectStorage; class Notifier implements NotifierInte...
Used splObjectStorage instead of array to store Room objects
hannesvdvreken_hipchat
train
b881d30096dc8bd81687b49136b3afe06767a66f
diff --git a/lib/ohai/plugins/vbox_host.rb b/lib/ohai/plugins/vbox_host.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/vbox_host.rb +++ b/lib/ohai/plugins/vbox_host.rb @@ -21,11 +21,7 @@ Ohai.plugin(:VboxHost) do # determine if this host is configured with virtualbox or not # the determination is ultimatel...
Simplify how we detect vbox hosts as well Just rely on the existing ohai data
chef_ohai
train
2311fd504237c484757f518bee67795bda263230
diff --git a/addon/system/drag-listener.js b/addon/system/drag-listener.js index <HASH>..<HASH> 100644 --- a/addon/system/drag-listener.js +++ b/addon/system/drag-listener.js @@ -132,6 +132,7 @@ export default class { let listener = this.findListener(evt); if (listener) { listener.handlers.drop(evt); +...
nullify _listener after file drop
adopted-ember-addons_ember-file-upload
train
94455dace69a95d64083ca862284c022ec5dc241
diff --git a/tests/integration/modules/sysmod.py b/tests/integration/modules/sysmod.py index <HASH>..<HASH> 100644 --- a/tests/integration/modules/sysmod.py +++ b/tests/integration/modules/sysmod.py @@ -26,20 +26,26 @@ class SysModuleTest(integration.ModuleCase): Make sure no functions are exposed that don't h...
Show useful information from the failing test.
saltstack_salt
train
cd3265bba4cb8a556984d381e0aa99d02bb19785
diff --git a/lib/barkest_ssh/secure_shell.rb b/lib/barkest_ssh/secure_shell.rb index <HASH>..<HASH> 100644 --- a/lib/barkest_ssh/secure_shell.rb +++ b/lib/barkest_ssh/secure_shell.rb @@ -107,7 +107,8 @@ module BarkestSsh @options[:host], @options[:user], password: @options[:password], -...
Limit auth methods to password only.
barkerest_barkest_ssh
train
457a546114967873eaca0d4b22aec0dd4731d1a6
diff --git a/app/examples/trackerdash/index.js b/app/examples/trackerdash/index.js index <HASH>..<HASH> 100644 --- a/app/examples/trackerdash/index.js +++ b/app/examples/trackerdash/index.js @@ -373,4 +373,4 @@ if (qParams) { } } } -var app = new TrackerDash(appSettings); +var app = new TrackerDash(document.bo...
refactor(trackerdash): unbackbonify TrackerDash
Kitware_candela
train
236912d9a66e54af5fffede5a33e7cf733b2c4c9
diff --git a/panels/_version.py b/panels/_version.py index <HASH>..<HASH> 100644 --- a/panels/_version.py +++ b/panels/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.0.54" +__version__ = "0.0.55"
Update version number to <I>
chaoss_grimoirelab-sigils
train
8d9b72e9abad1e85fda61febfde5ae8c4eb68723
diff --git a/lib/serrano.rb b/lib/serrano.rb index <HASH>..<HASH> 100644 --- a/lib/serrano.rb +++ b/lib/serrano.rb @@ -651,7 +651,7 @@ module Serrano # Serrano.citation_count(doi: "10.1016/j.fbr.2012.01.001") # # DOI not found # Serrano.citation_count(doi: "10.1016/j.fbr.2012") - def self.citation_count...
update two urls used in pkg api to https
sckott_serrano
train
49043c46a03724b00fa673e2250eb8dd27c2891a
diff --git a/alot/helper.py b/alot/helper.py index <HASH>..<HASH> 100644 --- a/alot/helper.py +++ b/alot/helper.py @@ -418,7 +418,7 @@ def tag_cmp(a, b): Sorting tags using this function puts all tags of length 1 at the beginning. This groups all tags mapped to unicode characters. ''' - if min(len(a),...
Fix the sorting of tags with length == 1 The tag sorting `cmp()` put single unicode tags before the long tag names, but don't sort the single length tags. This commit fix this behavior sorting the single length tags separately.
pazz_alot
train
157acc13ad7e70ac8b787a42801ba871c3a0fe45
diff --git a/datapackage_pipelines/lib/dump.py b/datapackage_pipelines/lib/dump.py index <HASH>..<HASH> 100644 --- a/datapackage_pipelines/lib/dump.py +++ b/datapackage_pipelines/lib/dump.py @@ -2,6 +2,7 @@ import os import zipfile import csv import json +import re import tempfile import logging @@ -15,6 +16,11 ...
Update the resource metadata before zipping datapackage. (#<I>) * Update the resource metadata before zipping datapackage. - set encoding explicitely to utf-8 - ensure file extension is .csv * Use regex instead of replace to fix file extension. * Concatenate basename + ext instead of using regex.
frictionlessdata_datapackage-pipelines
train
9965c7ca48f9e888e4c6505e3871dda8b13ae4fd
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - themes_for_rails (0.0.1) + themes_for_rails (0.1.0) GEM remote: http://rubygems.org/ diff --git a/README.textile b/README.textile index <HASH>..<HASH> 100...
Supporting symbol as theme name, in order to defer thame name resolution to another method.
lucasefe_themes_for_rails
train
0338a955a930286beaa7b66c5167be9b15d34d78
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index <HASH>..<HASH> 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -488,7 +488,7 @@ class Plugin(object): self.soslog.warning("command '%s' timed out after %ds" % (prog, timeout)) if status ...
Fix verbose file logging Prior versions of sos enable debug logging to the embedded log file (sos_logs/sos.log) when a single '-v' is given. Restore this behaviour and ensure that command-not-found messages are reported at 'info' rather than 'warning' level.
sosreport_sos
train
3a0d578b3769a02d4b5edf6c85c1ff9f0053cbf6
diff --git a/awslimitchecker/runner.py b/awslimitchecker/runner.py index <HASH>..<HASH> 100644 --- a/awslimitchecker/runner.py +++ b/awslimitchecker/runner.py @@ -212,13 +212,6 @@ class Runner(object): for lim in sorted(limits[svc].keys()): data["{s}/{l}".format(s=svc, l=lim)] = '{v}'.form...
remove a bit of spot instance debugging
jantman_awslimitchecker
train
d273fcd1c91d6aa6a8d4535d92feffecb2c02364
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ optional arguments: Override the default page source -c, --color Override color stripping -r, --render Render local markdown files + -l, --list L...
Add autocomplete and --list option for listing commands (#<I>) * Add autocomplete and --list option for listing commands (#<I>) * Fix bug in get_commands() from code review suggestion. * Default platforms to None for get_commands()
tldr-pages_tldr-python-client
train
aa7eed2a0478af5b397732810c0e41c10208b0d1
diff --git a/lib/Internal/Windows/Runner.php b/lib/Internal/Windows/Runner.php index <HASH>..<HASH> 100644 --- a/lib/Internal/Windows/Runner.php +++ b/lib/Internal/Windows/Runner.php @@ -216,12 +216,15 @@ final class Runner implements ProcessRunner $handle->stdin->close(); $handle->stdout->close(); ...
Fix further fclose errors with PHP 8 (#<I>)
amphp_process
train
dd81979e9fcb24d4a79670422e27bb49e788ecda
diff --git a/src/Provider/Azure.php b/src/Provider/Azure.php index <HASH>..<HASH> 100644 --- a/src/Provider/Azure.php +++ b/src/Provider/Azure.php @@ -32,9 +32,11 @@ class Azure extends AbstractProvider protected function checkResponse(ResponseInterface $response, $data) { - if (isset($data['odata.er...
Fix for Microsoft Graph incompatibility #<I>
TheNetworg_oauth2-azure
train
f209ca843126bb03e3335fc770ad1bc04d7c9c79
diff --git a/messages/lv/user.php b/messages/lv/user.php index <HASH>..<HASH> 100644 --- a/messages/lv/user.php +++ b/messages/lv/user.php @@ -73,7 +73,7 @@ return [ 'Delete' => 'Dzēst', 'Didn\'t receive confirmation message?' => 'Nesaņēmat apstiprinājuma e-pastu?', 'Disconnect' => 'Atslēgt', - 'Don\'...
Update user.php (#<I>)
dektrium_yii2-user
train
daa793dede500c22c361d799eaf693f5b2b89ef8
diff --git a/ella/newman/media/js/kobayashi.js b/ella/newman/media/js/kobayashi.js index <HASH>..<HASH> 100644 --- a/ella/newman/media/js/kobayashi.js +++ b/ella/newman/media/js/kobayashi.js @@ -58,6 +58,11 @@ ContentByHashLib.LOADED_MEDIA = {}; // so we can load or not load content appropriately on hash change. ...
Addresses loaded by hashchange are now distinguished. Fixes #<I>. Fixes #<I>.
ella_ella
train
4620abbb5b0388ded1f292fb79ac686edae619ab
diff --git a/guacamole/src/main/webapp/scripts/client-ui.js b/guacamole/src/main/webapp/scripts/client-ui.js index <HASH>..<HASH> 100644 --- a/guacamole/src/main/webapp/scripts/client-ui.js +++ b/guacamole/src/main/webapp/scripts/client-ui.js @@ -1047,10 +1047,9 @@ GuacUI.Client.attach = function(guac) { e.sto...
Use subarray rather than slice (as IE<I> lacks slice).
glyptodon_guacamole-client
train
0374d3f7f0090afc44e01083c444503bc2f51e13
diff --git a/import_export/admin.py b/import_export/admin.py index <HASH>..<HASH> 100644 --- a/import_export/admin.py +++ b/import_export/admin.py @@ -40,13 +40,21 @@ class ImportMixin(object): def get_format(self, format_name): return getattr(tablib.formats, format_name) + def get_mode_for_format(se...
Add configurable mode for opening files (deault rU)
django-import-export_django-import-export
train
1460f6ee7ab521e1c443acdff8ec9f44069a196b
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.2 - +* bugfix for python3+ where binary data was passed into a process's stdin [#325](https://github.com/amoffat/sh/issues/325) * Introduced execution contexts which allow baking of ...
bugfix where python3 woudln't accept binary stdin closes #<I>
amoffat_sh
train
ec624ba9fbed2e0a164d192bd6e76435b13166a9
diff --git a/spyder/widgets/variableexplorer/collectionseditor.py b/spyder/widgets/variableexplorer/collectionseditor.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/variableexplorer/collectionseditor.py +++ b/spyder/widgets/variableexplorer/collectionseditor.py @@ -19,6 +19,7 @@ Collections (i.e. dictionary, list ...
Variable Explorer: Free memory when closing an editor - We're doing this by calling gc.collect().
spyder-ide_spyder
train
e953c6abcf564e77a8a538e37ef5ddd28b38de9d
diff --git a/config.go b/config.go index <HASH>..<HASH> 100644 --- a/config.go +++ b/config.go @@ -464,7 +464,8 @@ func loadConfig() (*config, error) { cfg.RPCListeners = append(cfg.RPCListeners, addr) } - // Listen on the default interface/port if no REST listeners were specified. + // Listen on the default int...
config: add stricter config parsing to avoid dangerous RPC auth combos In this commit, we add an additional constraint to the RPC configuration parsing. Before this commit, it was possible to start lnd with either RPC server listening on an external interface *without* authentication disabled. After this commit, if a ...
lightningnetwork_lnd
train
5906a3119d3c8ac40304d71913247021ab442873
diff --git a/lib/node_modules/@stdlib/utils/reduce/lib/ndarray.js b/lib/node_modules/@stdlib/utils/reduce/lib/ndarray.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/utils/reduce/lib/ndarray.js +++ b/lib/node_modules/@stdlib/utils/reduce/lib/ndarray.js @@ -134,6 +134,10 @@ function reduce( x, initial, fcn...
Fix 0-dimensional ndarray support
stdlib-js_stdlib
train
52ffe6172d35ce9144088dfade682c0f170f3ce9
diff --git a/tuf/data/types.go b/tuf/data/types.go index <HASH>..<HASH> 100644 --- a/tuf/data/types.go +++ b/tuf/data/types.go @@ -141,13 +141,13 @@ func CheckHashes(payload []byte, hashes Hashes) error { case notary.SHA256: checksum := sha256.Sum256(payload) if subtle.ConstantTimeCompare(checksum[:], v) == ...
Use concrete error types rather than generic errors Use concrete error types for functions "CheckHashes" and "CheckValidHashStructures".
theupdateframework_notary
train
d2b28855e0b1ef6ff5ee3921ff9d26aefacb5817
diff --git a/bcbio/variation/effects.py b/bcbio/variation/effects.py index <HASH>..<HASH> 100644 --- a/bcbio/variation/effects.py +++ b/bcbio/variation/effects.py @@ -103,7 +103,9 @@ def prep_vep_cache(dbkey, ref_file, tooldir=None, config=None): if not os.path.exists(out_dir): tmp_dir = u...
fixed VEP installation path pointing to indexed_vep_cache in <I> (#<I>)
bcbio_bcbio-nextgen
train
61f2d6ddbed0e70f26b3f5d0a45b77b82f9e31fd
diff --git a/src/js/source/tokenizer.js b/src/js/source/tokenizer.js index <HASH>..<HASH> 100644 --- a/src/js/source/tokenizer.js +++ b/src/js/source/tokenizer.js @@ -7,8 +7,8 @@ let Tokenizer = function() { {name: "keyword", regexp: /^(abstract|array|as|break|callable|case|catch|class|clone|const|continue|dec...
Fixed broken tokenizing of double backslahes in strings
Qafoo_QualityAnalyzer
train
3172efb58b763705242f6bdf5131fbc649fffd6c
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ IMPROVEMENTS - Support new init API options [GH-127] - Return base64-encoded keys in init response [GH-128] +- Add support for `#hostname` for specifying SNI hostname to validate [GH-112] ...
Add configurable for SNI hostnames
hashicorp_vault-ruby
train
a20fcec2508c291013b51ce995debbfd3a749aa0
diff --git a/microbot/admin.py b/microbot/admin.py index <HASH>..<HASH> 100644 --- a/microbot/admin.py +++ b/microbot/admin.py @@ -1,5 +1,6 @@ from django.contrib import admin -from microbot.models import Message, Chat, Update, User, Bot, Handler, EnvironmentVar, Request, Response, Hook +from microbot.models import Me...
add Url&Header Parameter and Hook Recipients to admin
jlmadurga_permabots
train
40f8ed69fb9d18bd5b2248eab782541048bd6a7c
diff --git a/js/bitmarket.js b/js/bitmarket.js index <HASH>..<HASH> 100644 --- a/js/bitmarket.js +++ b/js/bitmarket.js @@ -103,6 +103,12 @@ module.exports = class bitmarket extends Exchange { 'LTC/BTC': { 'id': 'LTCBTC', 'symbol': 'LTC/BTC', 'base': 'LTC', 'quote': 'BTC' }, 'LiteMineX/...
bitmarket: taker/maker fees added
ccxt_ccxt
train
57cb0aadfb5f4a69f396a5db19e0db46b2f15fdb
diff --git a/library/blur.rb b/library/blur.rb index <HASH>..<HASH> 100644 --- a/library/blur.rb +++ b/library/blur.rb @@ -30,7 +30,7 @@ require 'blur/script/commands' # It can be by handlers, scripts, communications, and what have you. module Blur # The major and minor version-values of Blur. - Version = "1.8" +...
Add :extension_loaded callback
mkroman_blur
train
db90b761fc3e25b7ebefdf1be134f81049e5e3e3
diff --git a/src/Saft/Test/TestCase.php b/src/Saft/Test/TestCase.php index <HASH>..<HASH> 100644 --- a/src/Saft/Test/TestCase.php +++ b/src/Saft/Test/TestCase.php @@ -82,6 +82,69 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase } /** + * Checks two lists which implements \Iterator interfac...
TestCase: add assertIteratorContent to compare Iterator instances The problem is, that if you compare two instances, which both implement \Iterator, you can simply sort them, but otherwise PHPUnit sometimes say, they are not the same, even if they contain the same elements, but not in the same order. This function he...
SaftIng_Saft
train
cc03e8d95fc634afeb40861045366b9926f79dc3
diff --git a/backbone-super/backbone-super-min.js b/backbone-super/backbone-super-min.js index <HASH>..<HASH> 100644 --- a/backbone-super/backbone-super-min.js +++ b/backbone-super/backbone-super-min.js @@ -1 +1 @@ -!function(e,t){if("function"==typeof define&&define.amd)define(["underscore","backbone"],function(e,n){t...
Verified `require` is a function on setup `require` must be verified to be a function before using it; Simply checking that exports is defined is not enough, because some libraries define `exports`, even though they don't use `require`.
lukasolson_backbone-super
train
bc56e52f56843869d2eefd4101eba2a9eef27112
diff --git a/pkg/minikube/node/start.go b/pkg/minikube/node/start.go index <HASH>..<HASH> 100644 --- a/pkg/minikube/node/start.go +++ b/pkg/minikube/node/start.go @@ -90,11 +90,13 @@ type Starter struct { // Start spins up a guest and starts the Kubernetes node. func Start(starter Starter, apiServer bool) (*kubecon...
support mounting with the --no-kubernetes flag
kubernetes_minikube
train
828210758e4e99f2db8aba9d7f0750b7626b0f1f
diff --git a/ctypescrypto/pkey.py b/ctypescrypto/pkey.py index <HASH>..<HASH> 100644 --- a/ctypescrypto/pkey.py +++ b/ctypescrypto/pkey.py @@ -175,6 +175,42 @@ class PKey: raise PKeyError("Error generating key") libcrypto.EVP_PKEY_CTX_free(ctx) return PKey(ptr=key,cansign=True) + def exportpub(self,format="PE...
Added pkey serialization (untested) and started to implement x<I>
vbwagner_ctypescrypto
train
f5f8444a53ae22531c801960a4bc254658f3b77e
diff --git a/lib/jsonapi/resource.rb b/lib/jsonapi/resource.rb index <HASH>..<HASH> 100644 --- a/lib/jsonapi/resource.rb +++ b/lib/jsonapi/resource.rb @@ -324,7 +324,7 @@ module JSONAPI relationship = self.class._relationships[relationship_type.to_sym] _model.public_send("#{relationship.foreign_key}=", ...
Public model_name_for_type method (#<I>)
cerebris_jsonapi-resources
train
f567d7e96b7aa0de461eafc86ddd7eddce4e145c
diff --git a/lib/bnet/starcraft2/profile.rb b/lib/bnet/starcraft2/profile.rb index <HASH>..<HASH> 100644 --- a/lib/bnet/starcraft2/profile.rb +++ b/lib/bnet/starcraft2/profile.rb @@ -79,6 +79,14 @@ class Bnet::Starcraft2::Profile < Bnet::BnetResource @career ||= [] end + def matches + @matches ||= Bnet::S...
Get SC2 profile matches, Milord.
keikun17_bnet-mashery-rb
train
51fb24bf3e1439380f0f954441da357261537cfd
diff --git a/gcsio/src/main/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageReadChannel.java b/gcsio/src/main/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageReadChannel.java index <HASH>..<HASH> 100644 --- a/gcsio/src/main/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageReadChannel.java +++ b/gcsio/src/...
Do not log warning in GoogleCloudStorageReadChannel.close if it's already closed.
GoogleCloudPlatform_bigdata-interop
train
3682e941ee620a04b570e1f2eb28c2eb64e0a5e4
diff --git a/public/js/render/console.js b/public/js/render/console.js index <HASH>..<HASH> 100644 --- a/public/js/render/console.js +++ b/public/js/render/console.js @@ -81,8 +81,10 @@ function stringify(o, simple, visited) { json += parts.join(',\n') + '\n}'; } else { try { - json = o+''; // should ...
Some console changes - not properly tested yet
jsbin_jsbin
train
7fc575d338766867cb4e6c3e8102b83f87380825
diff --git a/src/ValidatingObserver.php b/src/ValidatingObserver.php index <HASH>..<HASH> 100644 --- a/src/ValidatingObserver.php +++ b/src/ValidatingObserver.php @@ -7,28 +7,6 @@ use \Watson\Validating\ValidationException; class ValidatingObserver { /** - * Register the validation event for creating the mo...
Fire validation only on saving event (not creating and updating as well) (#<I>)
dwightwatson_validating
train
4c30ab6343ed7b1eaa9943cf595a1e64b987bb37
diff --git a/lib/docusign_rest/client.rb b/lib/docusign_rest/client.rb index <HASH>..<HASH> 100644 --- a/lib/docusign_rest/client.rb +++ b/lib/docusign_rest/client.rb @@ -1,3 +1,5 @@ +require 'openssl' + module DocusignRest class Client @@ -87,11 +89,20 @@ module DocusignRest # Returns a configured Net::HTTP...
Made the CA path configurable and tried to fix ssl cert verification for custom CA paths
jondkinney_docusign_rest
train
7a1bed2f073e7448568c7f81e373faf23ede96f9
diff --git a/src/test/java/com/bitplan/mediawiki/japi/TestAPI_Recentchanges.java b/src/test/java/com/bitplan/mediawiki/japi/TestAPI_Recentchanges.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/bitplan/mediawiki/japi/TestAPI_Recentchanges.java +++ b/src/test/java/com/bitplan/mediawiki/japi/TestAPI_Recentchange...
fixes to <I> tests not working
WolfgangFahl_Mediawiki-Japi
train
1fe59b13efe5960142997a626f84ca99ca40cb19
diff --git a/test/docker/containers.js b/test/docker/containers.js index <HASH>..<HASH> 100644 --- a/test/docker/containers.js +++ b/test/docker/containers.js @@ -6,13 +6,19 @@ var Docker = require('dockerode'), var docker = new Docker({socketPath: '/var/run/docker.sock'}); /* - * Spawns a mysql container. Takes o...
function to spawn multimaster mysql setup in docker
meetings_gearsloth
train
2becc1e4b0412bc1d48c7bc69eb3973f5480601a
diff --git a/Core/src/Viewify.js b/Core/src/Viewify.js index <HASH>..<HASH> 100644 --- a/Core/src/Viewify.js +++ b/Core/src/Viewify.js @@ -306,7 +306,7 @@ if (!window.Viewify) window.Viewify = function Viewify(_class, versionString) { /** * @description Set the color of the View * - * @deprecated + * @d...
deprecated since <I>
IntrospectiveSystems_xGraph
train
231ce95555d5395dd24e01b1bab198aa23a3b180
diff --git a/collatex/src/main/java/eu/interedition/collatex/dekker/matrix/ArchipelagoWithVersions.java b/collatex/src/main/java/eu/interedition/collatex/dekker/matrix/ArchipelagoWithVersions.java index <HASH>..<HASH> 100644 --- a/collatex/src/main/java/eu/interedition/collatex/dekker/matrix/ArchipelagoWithVersions.jav...
remove overlapping endcoordinates from islands to add
interedition_collatex
train
0aff83dea897cdfb25efa81ba60ab1469da56713
diff --git a/http/service.go b/http/service.go index <HASH>..<HASH> 100644 --- a/http/service.go +++ b/http/service.go @@ -229,6 +229,11 @@ func (s *Service) handleJoin(w http.ResponseWriter, r *http.Request) { return } + if r.Method != "POST" { + w.WriteHeader(http.StatusMethodNotAllowed) + return + } + b, ...
Ensure the correct HTTP methods on endpoints
rqlite_rqlite
train
91e8f68ae2e96faefc64c0727ca44518aa959b8f
diff --git a/lib/compoundify.js b/lib/compoundify.js index <HASH>..<HASH> 100644 --- a/lib/compoundify.js +++ b/lib/compoundify.js @@ -52,10 +52,11 @@ function compoundify(SuperConstructor) { if (arguments.length < 2) { value = {}; } + u = SuperConstructor.prototype.addNode.call(this, u, value); ...
Fix bug where auto-assigned id was not used for parent/children properties
dagrejs_graphlib
train
1adb132473ece4b4e70d07c83aec239fea3f5c20
diff --git a/src/Codeception/Util/ReflectionHelper.php b/src/Codeception/Util/ReflectionHelper.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Util/ReflectionHelper.php +++ b/src/Codeception/Util/ReflectionHelper.php @@ -85,7 +85,7 @@ class ReflectionHelper } $type = $parameter->getType(); - ...
Fix PHP types being treated as a classes
Codeception_Codeception
train
f0c8097d9a87139b116c535b29697512be012b02
diff --git a/go/vt/vttablet/tabletserver/vstreamer/uvstreamer.go b/go/vt/vttablet/tabletserver/vstreamer/uvstreamer.go index <HASH>..<HASH> 100644 --- a/go/vt/vttablet/tabletserver/vstreamer/uvstreamer.go +++ b/go/vt/vttablet/tabletserver/vstreamer/uvstreamer.go @@ -94,7 +94,6 @@ func newUVStreamer(ctx context.Context,...
Start watcher if tracker is on. More logs
vitessio_vitess
train
d33cc362d2e9851d4f35c013730ae29eede8e5ca
diff --git a/memcache_admin/views.py b/memcache_admin/views.py index <HASH>..<HASH> 100644 --- a/memcache_admin/views.py +++ b/memcache_admin/views.py @@ -10,7 +10,7 @@ from django.conf import settings from django.utils.translation import ugettext as _ if get_cache.__module__.startswith('debug_toolbar'): - from ...
Fixed compatibility issue with django debug toolbar <I>.
ianare_django-memcache-admin
train
4d788d10d158e499463dee126f29db3a85e7b086
diff --git a/pipenv/cli.py b/pipenv/cli.py index <HASH>..<HASH> 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -464,7 +464,7 @@ def ensure_python(three=None, python=None): '2.7': '2.7.14', # '3.1': '3.1.5', # '3.2': '3.2.6', - '3.3': '...
Update Python <I> and <I> versions * <I> was released on <I>-<I>-<I> * <I> was released on <I>-<I>-<I>
pypa_pipenv
train
aa44743f29484653eec8623d5f674b0b88e75a37
diff --git a/src/Bex/Behat/ScreenshotExtension/Service/ScreenshotTaker.php b/src/Bex/Behat/ScreenshotExtension/Service/ScreenshotTaker.php index <HASH>..<HASH> 100644 --- a/src/Bex/Behat/ScreenshotExtension/Service/ScreenshotTaker.php +++ b/src/Bex/Behat/ScreenshotExtension/Service/ScreenshotTaker.php @@ -43,11 +43,15 ...
Catch exception like unsupported driver exception and curl error during image upload to not block test running if screenshot cannot be taken
elvetemedve_behat-screenshot
train
bee4948df1baf5af1035e1db09bf145ba417be6b
diff --git a/tests/unit/netapi/rest_tornado/test_utils.py b/tests/unit/netapi/rest_tornado/test_utils.py index <HASH>..<HASH> 100644 --- a/tests/unit/netapi/rest_tornado/test_utils.py +++ b/tests/unit/netapi/rest_tornado/test_utils.py @@ -173,7 +173,7 @@ class TestEventListener(AsyncTestCase): self.sto...
Lint: use full path for event utils function
saltstack_salt
train
b853569389a53148a1da746fb75d1fd9ec95dd82
diff --git a/seleniumbase/core/browser_launcher.py b/seleniumbase/core/browser_launcher.py index <HASH>..<HASH> 100755 --- a/seleniumbase/core/browser_launcher.py +++ b/seleniumbase/core/browser_launcher.py @@ -1,3 +1,4 @@ +import logging import os import random import re @@ -519,8 +520,8 @@ def get_local_driver( ...
Update logging around making web drivers executable
seleniumbase_SeleniumBase
train
47f56d642587e9b0a920b71fd983620d4f75da13
diff --git a/lib/renderer/default-renderer.js b/lib/renderer/default-renderer.js index <HASH>..<HASH> 100644 --- a/lib/renderer/default-renderer.js +++ b/lib/renderer/default-renderer.js @@ -232,7 +232,7 @@ export default class DefaultRenderer extends Renderer { // if (path) this.sortElements(); // create a...
fix(transition): Disable focus transitions for now
conveyal_transitive.js
train
8c80429f4e639eed452222d033b70ab2d6b0fa45
diff --git a/pysle/praattools.py b/pysle/praattools.py index <HASH>..<HASH> 100644 --- a/pysle/praattools.py +++ b/pysle/praattools.py @@ -70,18 +70,13 @@ def syllabifyTextgrid(isleDict, tg, wordTierName, phoneTierName, continue for syllabificationResultList in sylTmp: - sylla...
BUGFIX: Was using the wrong index to locate the stressed vowel I was using the target pronunciation's stress vowel index to find the actual pronunciation's stress vowel index. In reality, I just need to find the vowel in the syllable identified as the one bearing stress.
timmahrt_pysle
train
4f54bde5fb2718b23bdbc55c81a52eee0ed7f3e8
diff --git a/src/test/java/com/github/tomakehurst/wiremock/WireMockServerTests.java b/src/test/java/com/github/tomakehurst/wiremock/WireMockServerTests.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/github/tomakehurst/wiremock/WireMockServerTests.java +++ b/src/test/java/com/github/tomakehurst/wiremock/WireMo...
Add test to prove issue #<I>
tomakehurst_wiremock
train