hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
739a573d8aa9c3c1eb0f24ba26603f747d705adf
diff --git a/spyder/dependencies.py b/spyder/dependencies.py index <HASH>..<HASH> 100644 --- a/spyder/dependencies.py +++ b/spyder/dependencies.py @@ -181,14 +181,11 @@ def declare_dependencies(): add("keyring", "keyring", _("Save Github credentials to report errors " "securely.")...
Removing Python language server, pyqt5 and pyqtwebengine from dependencies
spyder-ide_spyder
train
4979cbf8303d0a521cc0ca562426634ee23a89ab
diff --git a/src/catgen/in/javasrc/DRCatalogDiffEngine.java b/src/catgen/in/javasrc/DRCatalogDiffEngine.java index <HASH>..<HASH> 100644 --- a/src/catgen/in/javasrc/DRCatalogDiffEngine.java +++ b/src/catgen/in/javasrc/DRCatalogDiffEngine.java @@ -21,6 +21,7 @@ package org.voltdb.catalog; +import java.util.HashSet;...
ENG-<I>: Build a set of tables that can accept dr transaction Build a set of local tables which can accept DR transactions while performing the catalog diff.
VoltDB_voltdb
train
6d8044c3047fb0e90a880a194895a43a158f811a
diff --git a/doc/sphinxext/ipython_sphinxext/ipython_directive.py b/doc/sphinxext/ipython_sphinxext/ipython_directive.py index <HASH>..<HASH> 100644 --- a/doc/sphinxext/ipython_sphinxext/ipython_directive.py +++ b/doc/sphinxext/ipython_sphinxext/ipython_directive.py @@ -802,10 +802,14 @@ class IPythonDirective(Directiv...
DOC: fixed using IP.prompt_manager which is removed from IPython 5.x (#<I>) * fixed using IP.prompt_manager which is removed from IPython 5.x class promptManager has removed in IPython 5.x, but this file still using that class, so it makes AttributeError.
pandas-dev_pandas
train
42e43ec5d4697bd368fd795d2099825962369673
diff --git a/tests/CacheWarmer/HashCacheWarmerTest.php b/tests/CacheWarmer/HashCacheWarmerTest.php index <HASH>..<HASH> 100644 --- a/tests/CacheWarmer/HashCacheWarmerTest.php +++ b/tests/CacheWarmer/HashCacheWarmerTest.php @@ -8,6 +8,7 @@ use Incenteev\HashedAssetBundle\Hashing\AssetHasherInterface; use PHPUnit\Framew...
Rewrite the cache warmer test to avoid relying on the cache internals The structure of the array returned in the PhpArrayAdapter cache file changed in symfony/cache <I> to optimize the adapter. Instead of making assertions on the content of this file, the test now ensures that reading from the cache is a hit.
Incenteev_hashed-asset-bundle
train
ca21ccebc3239db1259ce7cb625bf8655c1dbfb4
diff --git a/acceptancetests/utility.py b/acceptancetests/utility.py index <HASH>..<HASH> 100644 --- a/acceptancetests/utility.py +++ b/acceptancetests/utility.py @@ -294,9 +294,15 @@ def add_basic_testing_arguments( help='Keep the Juju environment after the test' ' com...
Improve --existing arg to default to current.
juju_juju
train
d4e25a15bb944659324e85d8b3231ce556919109
diff --git a/PiwikTracker.php b/PiwikTracker.php index <HASH>..<HASH> 100644 --- a/PiwikTracker.php +++ b/PiwikTracker.php @@ -89,6 +89,7 @@ class PiwikTracker $this->forcedNewVisit = false; $this->generationTime = false; $this->pageCustomVar = false; + $this->customParameters = array(...
Added possibility to set custom tracking parameters for 3rd party plugins
matomo-org_matomo-php-tracker
train
089e25dc3e5848ce180e354129d762d06604e7bb
diff --git a/.hound.yml b/.hound.yml index <HASH>..<HASH> 100755 --- a/.hound.yml +++ b/.hound.yml @@ -33,7 +33,7 @@ CyclomaticComplexity: ClassLength: Description: 'Avoid classes longer than 100 lines of code.' CountComments: false # count full line comments? - Max: 281 + Max: 284 Output: Descri...
Fix dumb but disastrous cache copying bug
dominicsayers_foreplay
train
b3276ef5bdfa4302f89c14d708b9fdf648a3f1ef
diff --git a/groupy/__init__.py b/groupy/__init__.py index <HASH>..<HASH> 100644 --- a/groupy/__init__.py +++ b/groupy/__init__.py @@ -10,15 +10,16 @@ import groupy.config def _attempt_to_load_apikey(): filepath = os.path.expanduser(groupy.config.KEY_LOCATION) - with open(filepath, 'r') as f: - try: +...
Fixed bug when API_KEY cannot be loaded
rhgrant10_Groupy
train
053cce159df642518f3d35a42574de93bf5434d6
diff --git a/spec/lib/fog_tracker/query/query_processor_spec.rb b/spec/lib/fog_tracker/query/query_processor_spec.rb index <HASH>..<HASH> 100644 --- a/spec/lib/fog_tracker/query/query_processor_spec.rb +++ b/spec/lib/fog_tracker/query/query_processor_spec.rb @@ -30,15 +30,19 @@ module FogTracker context "wit...
Parameterize NUMBER_OF_FAKE_RESOURCE_TYPES, NUMBER_OF_COLLECTIONS, and RESOURCES_PER_ACCOUNT in tests.
benton_fog_tracker
train
e6e4dca155cee4dd485469bb2ca7ee867d8ff0c6
diff --git a/src/server/admin/server/convert1_9.go b/src/server/admin/server/convert1_9.go index <HASH>..<HASH> 100644 --- a/src/server/admin/server/convert1_9.go +++ b/src/server/admin/server/convert1_9.go @@ -203,6 +203,17 @@ func convert1_9Secrets(secrets []*pps1_9.Secret) []*pps.SecretMount { return result } +...
Fixes conversion for ErrCmd and ErrStdin
pachyderm_pachyderm
train
62c2be8d051461a9f20a80528f869ee1ef8cb989
diff --git a/src/PgProcedures.class.php b/src/PgProcedures.class.php index <HASH>..<HASH> 100644 --- a/src/PgProcedures.class.php +++ b/src/PgProcedures.class.php @@ -126,7 +126,7 @@ class PgProcedures { } private function disconnect () { - if ($this->handler) + if (is_resource($this->handler)) pg_...
Debug pg_close on PHP7
actimeo_pgproc
train
b6207b462c8893e31ed989e35eb2084739527a0b
diff --git a/src/main/java/com/codeborne/selenide/webdriver/FirefoxDriverFactory.java b/src/main/java/com/codeborne/selenide/webdriver/FirefoxDriverFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/codeborne/selenide/webdriver/FirefoxDriverFactory.java +++ b/src/main/java/com/codeborne/selenide/webdriver...
Redirect tons of firefox logs to /dev/null (#<I>) * Redirect tons of firefox spam logs to hell. * Made firefox log file path as hidden property with default value.
selenide_selenide
train
12e210fdf59b548989da1d737d14fac994045fb7
diff --git a/test/parfait/test_integer.rb b/test/parfait/test_integer.rb index <HASH>..<HASH> 100644 --- a/test/parfait/test_integer.rb +++ b/test/parfait/test_integer.rb @@ -27,14 +27,16 @@ class TestPutiRT < MiniTest::Test end def test_hightimes - [2,3,4,5,10,121212 , 12345 , 3456 , 234567].each do |m| +# ...
no to slow tests to a halt also the high low code isn’t even used in the current version, no need to test too much
ruby-x_rubyx
train
731cb204ef6b6c7eaf73a700bfb65e87332e3804
diff --git a/src/main/java/org/codehaus/mojo/aspectj/AbstractAjcCompiler.java b/src/main/java/org/codehaus/mojo/aspectj/AbstractAjcCompiler.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/codehaus/mojo/aspectj/AbstractAjcCompiler.java +++ b/src/main/java/org/codehaus/mojo/aspectj/AbstractAjcCompiler.java @@ -3...
cleanup now obsolete javadocs #3
mojohaus_aspectj-maven-plugin
train
dffb5516d1d141d6eab6d5f5deeaa83105d3230c
diff --git a/lib/domjs.js b/lib/domjs.js index <HASH>..<HASH> 100644 --- a/lib/domjs.js +++ b/lib/domjs.js @@ -9,6 +9,7 @@ var reserved = require('es5-ext/lib/reserved').all , bindMethods = require('es5-ext/lib/Object/bind-methods').call , link = require('es5-ext/lib/Object/plain/link').bind , ...
Simplify code with forEach for object
medikoo_domjs
train
1958eb4678c95f0c75dea3080beb088761cecd9a
diff --git a/tests/sanji/test_router.py b/tests/sanji/test_router.py index <HASH>..<HASH> 100644 --- a/tests/sanji/test_router.py +++ b/tests/sanji/test_router.py @@ -2,6 +2,9 @@ import unittest import sys import os +from mock import Mock + + try: sys.path.append(os.path.dirname(os.path.realpath(__file__)) + ...
Update test_router.py - Refine something
Sanji-IO_sanji
train
573e9149e205e48d6675292cfa413bee4f412a26
diff --git a/composer.json b/composer.json index <HASH>..<HASH> 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ }, "require-dev": { "jakub-onderka/php-parallel-lint": "^0.9.2", - "mediawiki/mediawiki-codesniffer": "^13.0", + "mediawiki/mediawiki-codesniffer": "~22.0", ...
Unify monorepo script running & bump code sniffer (#<I>) * Allow running most composer scripts from the mono repo * mediawiki-datamodel: Fix tests, style and more * Bump mediawiki-codesniffer to ~<I> This should allow #5 to happen * Run Github Action tests in php <I> Fixes #5 * Allow running ALL composer commands...
addwiki_mediawiki-api-base
train
3d10fde33e02fa8e50238f4e13ed993b998d840e
diff --git a/src/Scale.js b/src/Scale.js index <HASH>..<HASH> 100644 --- a/src/Scale.js +++ b/src/Scale.js @@ -103,12 +103,15 @@ function configureRange(scale, _, count) { if (type !== 'band' && type !== 'point') { error('Only band and point scales support rangeStep.'); } + // calculate full range...
Modify scale calculation to make outer padding consistent when count =1 as well.
vega_vega-encode
train
093d910d276549b21ab0872028a120390f6bf0a5
diff --git a/.gitignore b/.gitignore index <HASH>..<HASH> 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ # node node_modules npm-debug.log + +# jetbrains ide +/.idea \ No newline at end of file diff --git a/mongodb-uri.js b/mongodb-uri.js index <HASH>..<HASH> 100644 --- a/mongodb-uri.js +++ b/mongodb-uri.j...
should split options on '&' not ','
mongolab_mongodb-uri-node
train
b570e210de4f83f0995916e95a408a4aa0ac8036
diff --git a/spec/pivotal-ui-react/panels/panels_spec.js b/spec/pivotal-ui-react/panels/panels_spec.js index <HASH>..<HASH> 100644 --- a/spec/pivotal-ui-react/panels/panels_spec.js +++ b/spec/pivotal-ui-react/panels/panels_spec.js @@ -3,15 +3,20 @@ describe('Panel', function() { var Panel; beforeEach(function() {...
feat(panels): react panels now accept classname, id, and style props [#<I>]
pivotal-cf_pivotal-ui
train
5dd4d2b2d3abcfd507a6df47e7c2fbad3c552fd8
diff --git a/datasette/views/base.py b/datasette/views/base.py index <HASH>..<HASH> 100644 --- a/datasette/views/base.py +++ b/datasette/views/base.py @@ -257,9 +257,12 @@ class DataView(BaseView): assert NotImplemented async def get(self, request, db_name, **kwargs): - database, hash, correct_ha...
Update to latest black (#<I>)
simonw_datasette
train
254deac546d5f0d2341dc3eb0d993a517207d5a1
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup( name='codequality', version='0.1-dev', - url='http://github.com/oakwise/codequality', + url='http://github.com/jenanwise/codequality', description='Simple ...
Correcting setup.py url
jenanwise_codequality
train
94ff0eb6f97439db134ad8f741d8972acb4c72c5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-knockout-modeler', - version='0.1.0', + version='0.3.0', packages=['knockout_modeler'], in...
fuck it, calling this <I>
Miserlou_django-knockout-modeler
train
4041d2038be2d8bfc4b37088b53925958cbc0724
diff --git a/api/auth.go b/api/auth.go index <HASH>..<HASH> 100644 --- a/api/auth.go +++ b/api/auth.go @@ -82,6 +82,7 @@ func login(w http.ResponseWriter, r *http.Request) error { } return err } + rec.Log(u.Email, "login") t, err := u.CreateToken(password) if err != nil { switch err.(type) { diff --git a...
api: record user action in the login handler Related to #<I>.
tsuru_tsuru
train
61114c10810eb6ec8ceb4792f477a18e1b3230d1
diff --git a/test/functional/base.rb b/test/functional/base.rb index <HASH>..<HASH> 100644 --- a/test/functional/base.rb +++ b/test/functional/base.rb @@ -208,6 +208,7 @@ module FunctionalBase end class Tracer + attr_reader :trace def initialize super @trace = '' diff --git a/test/functional/eft_1_ech...
playing with perftool.rb
jmettraux_ruote
train
fc3c4d3f088f3d8e68deb1a5ab7e4d464b6e0d23
diff --git a/test/variadic/v1.go b/test/variadic/v1.go index <HASH>..<HASH> 100644 --- a/test/variadic/v1.go +++ b/test/variadic/v1.go @@ -1,9 +1,9 @@ package variadic -type V1 struct {} +type V1 struct{} -func NewV1() V1 { - return V1{} +func NewV1() *V1 { + return &V1{} } func (v1 V1) Something() bool { diff...
Fix exist variadic test and append not variadic test
karlkfi_inject
train
fe4878eb7adb6d6d53dfe1d8462ae253f6a48738
diff --git a/softlayer/vm/softlayer_vm.go b/softlayer/vm/softlayer_vm.go index <HASH>..<HASH> 100755 --- a/softlayer/vm/softlayer_vm.go +++ b/softlayer/vm/softlayer_vm.go @@ -69,6 +69,18 @@ func (vm SoftLayerVM) Reboot() error { return nil } +func (vm SoftLayerVM) SetMetadata(metadata VMMetadata) error { + vm.logg...
added empty implementation for SL VM
cloudfoundry_bosh-softlayer-cpi-release
train
3387999189eb4bcbf63058b70681fbf6aacb5649
diff --git a/code/administrator/components/com_files/views/files/tmpl/uploader.php b/code/administrator/components/com_files/views/files/tmpl/uploader.php index <HASH>..<HASH> 100644 --- a/code/administrator/components/com_files/views/files/tmpl/uploader.php +++ b/code/administrator/components/com_files/views/files/tmp...
re #<I> default modal resize animation fades the content in and out, stupid and completely screwed up when used on a UI (makes a lot of sense in image slideshows perhaps, but not with tabs).
joomlatools_joomlatools-framework
train
f69c7dc396b3fbdee70c5fd8d274e3eb22221869
diff --git a/addon/services/current-user.js b/addon/services/current-user.js index <HASH>..<HASH> 100644 --- a/addon/services/current-user.js +++ b/addon/services/current-user.js @@ -92,61 +92,41 @@ export default Service.extend({ }, []); }).readOnly(), - userRoleTitles: computed('model.roles.[]', function()...
async/await userRoleTitles and various userIs* CPs
ilios_common
train
ae71aba7966115005a71696283ff2bb61d4400d0
diff --git a/src/main/java/com/github/wnameless/json/flattener/JsonFlattener.java b/src/main/java/com/github/wnameless/json/flattener/JsonFlattener.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/wnameless/json/flattener/JsonFlattener.java +++ b/src/main/java/com/github/wnameless/json/flattener/JsonFlat...
Using StringBuilder to compute key and other minor improvements
wnameless_json-flattener
train
0791e52dd80c38d33dcc2f625b20a71f13d5d8db
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools import setup setup( name = "SftpMan", - version = '0.1.1', + version = '0.1.2', description = "A command-line and GTK application that helps you mount SFTP file systems.", ...
The GUI now tells you if SSHFS is not installed.
spantaleev_sftpman
train
433be135e7c074c4481a6eb1f110cafa7402b760
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup( name='django-clever-selects', - version='0.5.0', + version='0.6.0', description='Chained select box widget for Django framework using AJAX requests.', lo...
version <I> for pypi
PragmaticMates_django-clever-selects
train
b0612f96f28965f879c756f9b0a3b351b942d8c8
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -10,6 +10,8 @@ module.exports = function (db, opts) { var ts = through() + ts.writable = false + ts.range = opts var removeHook = db.hooks.post(opts, function (ch) {
LiveStream is not writable
dominictarr_level-live-stream
train
8d18f0d8eae89b212944e98daffe3401dec12b3a
diff --git a/lib/github-backup.rb b/lib/github-backup.rb index <HASH>..<HASH> 100644 --- a/lib/github-backup.rb +++ b/lib/github-backup.rb @@ -43,14 +43,14 @@ class Github::Backup private ###################################################################### def backup_directory_for(repository) - File.join(b...
Back up repositories to backup_root/owner/repo.git Forks are incorrectly updated rather than cloned as we’re only backing up by repo name. This change now namespaces directories based on the repo owner.
ddollar_github-backup
train
d69f633a20fd166bdabce2d9afa21ec4ce1faa6e
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index <HASH>..<HASH> 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,10 +1,10 @@ [bumpversion] -current_version = 0.3.1.dev0 +current_version = 0.3.1-dev commit = True -tag = False -parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)...
Change version management and update to <I>-dev
pyecore_pyecore
train
25817a40d9920334698c3eca45287f01105e5a66
diff --git a/orator/database_manager.py b/orator/database_manager.py index <HASH>..<HASH> 100644 --- a/orator/database_manager.py +++ b/orator/database_manager.py @@ -75,6 +75,9 @@ class BaseDatabaseManager(ConnectionResolverInterface): :rtype: None """ + if name is None: + name = ...
Add standard name resolution to the purge method (#<I>) All methods in database manager treat `name` == `None` as `name` == `self.get_default_connection()` Purge almost works this way, except for the `name` it cleans up from the `_connections` cache. Fixes this behavior so that `None` cleans up cache entries pro...
sdispater_orator
train
8f657c44e85fe526b25694caecc0b3b69811a97f
diff --git a/lib/fluent/plugin/out_splunk_hec.rb b/lib/fluent/plugin/out_splunk_hec.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/plugin/out_splunk_hec.rb +++ b/lib/fluent/plugin/out_splunk_hec.rb @@ -323,10 +323,13 @@ module Fluent::Plugin post.body = chunk.read log.debug { "[Sending] Chunk: #{dump_uni...
handled exception for post request to hec (#<I>)
splunk_fluent-plugin-splunk-hec
train
3c2553f2856cb9f4114d08b175106ca1815ef58e
diff --git a/core/src/main/java/com/graphhopper/routing/util/BikeCommonFlagEncoder.java b/core/src/main/java/com/graphhopper/routing/util/BikeCommonFlagEncoder.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/graphhopper/routing/util/BikeCommonFlagEncoder.java +++ b/core/src/main/java/com/graphhopper/routi...
bike: prefer zones of traffic calming
graphhopper_graphhopper
train
6df3334f21f35c08328945ba0e09eb67c9817961
diff --git a/salt/runners/jobs.py b/salt/runners/jobs.py index <HASH>..<HASH> 100644 --- a/salt/runners/jobs.py +++ b/salt/runners/jobs.py @@ -183,7 +183,7 @@ def print_job(jid, ext_source=None): ret = {} returner = _get_returner((__opts__['ext_job_cache'], ext_source, __opts__['master_ext_job_cache'])) - ...
Update jobs.py Remove one more boolean from local testing
saltstack_salt
train
b752066dd144d3b16ebd4acff5682b52c7131ba0
diff --git a/salt/master.py b/salt/master.py index <HASH>..<HASH> 100644 --- a/salt/master.py +++ b/salt/master.py @@ -697,7 +697,11 @@ class AESFuncs(object): self.serial.dump( clear_load, open( os.path.join( - salt.utils.jid_dir(jid), + ...
Ensure the correct args are passed to jid_dir
saltstack_salt
train
7b6432e2cbb36cbb5fac878dba7468ab906b1536
diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index <HASH>..<HASH> 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -497,7 +497,7 @@ Guacamole.Keyboard = ...
GUAC-<I>: Do not ignore keydown if e.key is present. Pull keysym from e.key in keyup if possible.
glyptodon_guacamole-client
train
52cc84c66afc2c73e8a2a80aae46f2208f07c4cb
diff --git a/airflow/jobs/scheduler_job.py b/airflow/jobs/scheduler_job.py index <HASH>..<HASH> 100644 --- a/airflow/jobs/scheduler_job.py +++ b/airflow/jobs/scheduler_job.py @@ -27,7 +27,7 @@ import time import warnings from collections import defaultdict from datetime import timedelta -from typing import Collectio...
Row lock TI query in SchedulerJob._process_executor_events (#<I>) Using multiple schedulers causes Deadlock in _process_executor_events. This PR fixes it.
apache_airflow
train
4ea4442d8a6d761eb630b58bce222164de320f4d
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb index <HASH>..<HASH> 100644 --- a/spec/mixlib/shellout_spec.rb +++ b/spec/mixlib/shellout_spec.rb @@ -621,7 +621,7 @@ describe Mixlib::ShellOut do end context "when running under Windows", :windows_only do - let(:cmd) { 'whoami.ex...
make tests pass when run by a domain joined user
chef_mixlib-shellout
train
f90e07c2758222d8756c5d22d1e48a6cd1c4b8ea
diff --git a/server/sonar-server/src/test/java/org/sonar/server/authentication/ws/LoginActionTest.java b/server/sonar-server/src/test/java/org/sonar/server/authentication/ws/LoginActionTest.java index <HASH>..<HASH> 100644 --- a/server/sonar-server/src/test/java/org/sonar/server/authentication/ws/LoginActionTest.java +...
SONAR-<I> Update UTs to check auth events in LoginActionTest
SonarSource_sonarqube
train
1a2df14aa7c8090b36783a0aaad8ff140b7e25bf
diff --git a/cycy/compiler.py b/cycy/compiler.py index <HASH>..<HASH> 100644 --- a/cycy/compiler.py +++ b/cycy/compiler.py @@ -1,7 +1,7 @@ from characteristic import Attribute, attributes from cycy import bytecode -from cycy.objects import W_Int32 +from cycy.objects import W_Function, W_Int32 from cycy.parser impo...
W_Function for supporting function calls we need 2 pieces of information -- the name of the function to call, and the number of arguments, so we can't do this with the single arg to the bytecode. use a constant W_Function instead
Magnetic_cycy
train
8fdcc5e0190e0fadac9947358dadd01842c948a3
diff --git a/html/components/spinners.js b/html/components/spinners.js index <HASH>..<HASH> 100644 --- a/html/components/spinners.js +++ b/html/components/spinners.js @@ -8,7 +8,7 @@ const getSpinnerClasses = (options) => { classes.push('sprk-c-Spinner--large'); } - // TODO: Deprecate lightness option in fav...
add issue number for deprecation strategy
sparkdesignsystem_spark-design-system
train
c83a8a84877610ec291e9fbe2c339154dc04e1d4
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ - 'aiobotocore==0.4.5', - 'boto3==1.4.7' + 'aiobotocore==0.5.2', + 'boto3>=1.4.7' ] setup_requirem...
Bumped aiobotocore version
terrycain_aioboto3
train
c119c0c2e8355f686faccc5e92211252b7207759
diff --git a/okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.java b/okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.java index <HASH>..<HASH> 100644 --- a/okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.java +++ b/okhttp/src/test/java/okhttp3/internal/tls/ClientAuthTest.java @@ -215,6 +215,7 ...
Confirm the original TLS exception is available on client auth failures (#<I>) When we get an 'exhausted all routes' error, it's important that one of those exhausted routes is available in the stack trace. See <URL>
square_okhttp
train
e158cd5ffa072a85d9a7f7a26d42c05f79c1a5f0
diff --git a/src/Sylius/Bundle/UiBundle/Resources/private/js/app.js b/src/Sylius/Bundle/UiBundle/Resources/private/js/app.js index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/UiBundle/Resources/private/js/app.js +++ b/src/Sylius/Bundle/UiBundle/Resources/private/js/app.js @@ -40,6 +40,6 @@ return $(this).close...
[Ui] Missing closing bracket in app.js
Sylius_Sylius
train
e0536ae0cb47b8fed6afdaa9ba2589f6bd915caa
diff --git a/specs-go/version.go b/specs-go/version.go index <HASH>..<HASH> 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -25,7 +25,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc6-dev" + VersionDev = "-rc7" ) // Vers...
version: release <I>-rc7
opencontainers_image-spec
train
bc3733c4467a8a871498ef42dfdc2df1da55254a
diff --git a/karaage/pbsmoab/logs.py b/karaage/pbsmoab/logs.py index <HASH>..<HASH> 100755 --- a/karaage/pbsmoab/logs.py +++ b/karaage/pbsmoab/logs.py @@ -122,7 +122,7 @@ def parse_logs(log_list, date, machine_name, log_type): memory_used_per_core = data['list_mem'] / data['cores'] mem...
Using data['list_pmem'] here just feels completely wrong. Need to check with David.
Karaage-Cluster_karaage
train
95479245be99ea48e404edce563c732dfc321329
diff --git a/lib/rubocop/cop/mixin/end_keyword_alignment.rb b/lib/rubocop/cop/mixin/end_keyword_alignment.rb index <HASH>..<HASH> 100644 --- a/lib/rubocop/cop/mixin/end_keyword_alignment.rb +++ b/lib/rubocop/cop/mixin/end_keyword_alignment.rb @@ -59,22 +59,30 @@ module RuboCop end def align(node, align_...
Reduce complexit in EndKeywordAlignment mixin Split `align` into smaller methods.
rubocop-hq_rubocop
train
3fd2b7ad6e865c69d614fd51698798032a97ed23
diff --git a/ncclient/operations/rpc.py b/ncclient/operations/rpc.py index <HASH>..<HASH> 100644 --- a/ncclient/operations/rpc.py +++ b/ncclient/operations/rpc.py @@ -53,7 +53,11 @@ class RPCError(OperationError): OperationError.__init__(self, self.to_dict()) else: # We are intere...
Sets severity level to higher when multiple
ncclient_ncclient
train
616a9400800b58c17787b01bf2724ecc9c899617
diff --git a/spec/usage/components/action_spec.rb b/spec/usage/components/action_spec.rb index <HASH>..<HASH> 100644 --- a/spec/usage/components/action_spec.rb +++ b/spec/usage/components/action_spec.rb @@ -457,7 +457,7 @@ describe "Action Component", type: :feature, js: true do end Rails.application.routes...
fixing routes issue in new spec <URL>
basemate_matestack-ui-core
train
9ddf672ecd8e750d0d1a57a31853c206c45b3bb1
diff --git a/src/jquery.nstSlider.js b/src/jquery.nstSlider.js index <HASH>..<HASH> 100644 --- a/src/jquery.nstSlider.js +++ b/src/jquery.nstSlider.js @@ -1893,7 +1893,8 @@ $.error('rounding must be > 0, got ' + rounding + ' instead'); } return v; - } + }, + ...
Add valueToPx to public methods Useful if developer wants to pull what a position a value on the slider will be at. In my case trying set pips at values in slider, without this I can't find a trivial way to get this value.
lokku_jquery-nstslider
train
f39dcb11155681d16cf034b8d51000ef76799dc1
diff --git a/treeherder/client/setup.py b/treeherder/client/setup.py index <HASH>..<HASH> 100644 --- a/treeherder/client/setup.py +++ b/treeherder/client/setup.py @@ -4,7 +4,7 @@ from setuptools import setup -version = '1.3' +version = '1.4' setup(name='treeherder-client', version=version,
Bump treeherder-client version to <I>
mozilla_treeherder
train
3a52a0d66eafd9b030eea7aa8004f945a07b4767
diff --git a/js/bitfinex2.js b/js/bitfinex2.js index <HASH>..<HASH> 100644 --- a/js/bitfinex2.js +++ b/js/bitfinex2.js @@ -51,7 +51,7 @@ module.exports = class bitfinex2 extends bitfinex { 'fetchStatus': true, 'fetchTickers': true, 'fetchTime': false, - ...
delete fetchTradingFee
ccxt_ccxt
train
814c38e2cd58fbe7d459aaa6b316e86019188b02
diff --git a/commands/commands.rb b/commands/commands.rb index <HASH>..<HASH> 100644 --- a/commands/commands.rb +++ b/commands/commands.rb @@ -29,7 +29,7 @@ GitHub.describe :info => "Info about this project." GitHub.register :info do puts "== Info for #{helper.project}" puts "You are #{helper.owner}" - puts "Cu...
Add spec for github info Remove extraneous space in github info
defunkt_github-gem
train
02776ee668f6876a9d7d92b64a5fa653aea26e83
diff --git a/tests/mock_tests/test_sqlparsing.py b/tests/mock_tests/test_sqlparsing.py index <HASH>..<HASH> 100644 --- a/tests/mock_tests/test_sqlparsing.py +++ b/tests/mock_tests/test_sqlparsing.py @@ -232,6 +232,7 @@ class VoidQuery(MockTest): class TestCanvasVoidQuery(VoidQuery): + @skip def test_query(...
Support for Django <I>
nesdis_djongo
train
2ba124ac94064588a733e3b70e50e6404c62a9ad
diff --git a/modules/custom/openy_socrates/src/OpenySocratesCompilerPass.php b/modules/custom/openy_socrates/src/OpenySocratesCompilerPass.php index <HASH>..<HASH> 100644 --- a/modules/custom/openy_socrates/src/OpenySocratesCompilerPass.php +++ b/modules/custom/openy_socrates/src/OpenySocratesCompilerPass.php @@ -59,7 ...
Dirty cron, NON WORKING hack
ymcatwincities_openy
train
07dbdf262fc5d7fba1216c2e5be22eec69fcb856
diff --git a/p2p/protocol/identify/id.go b/p2p/protocol/identify/id.go index <HASH>..<HASH> 100644 --- a/p2p/protocol/identify/id.go +++ b/p2p/protocol/identify/id.go @@ -87,8 +87,6 @@ type IDService struct { ctx context.Context ctxCancel context.CancelFunc - // ensure we shutdown ONLY once - closeSync sync...
remove unnecessary sync.Once from the identify service
libp2p_go-libp2p
train
f9247dc60867d96ff7946929395eba626710a176
diff --git a/src/Form/EventListener/GenerateAddressFieldsSubscriber.php b/src/Form/EventListener/GenerateAddressFieldsSubscriber.php index <HASH>..<HASH> 100644 --- a/src/Form/EventListener/GenerateAddressFieldsSubscriber.php +++ b/src/Form/EventListener/GenerateAddressFieldsSubscriber.php @@ -175,6 +175,7 @@ class Gen...
Add the PIN postal code type (used by India).
commerceguys_addressing
train
eb0a11d53a0198fdafc7dca35046cd9f708f97e2
diff --git a/core/server/data/importer/importers/data/posts.js b/core/server/data/importer/importers/data/posts.js index <HASH>..<HASH> 100644 --- a/core/server/data/importer/importers/data/posts.js +++ b/core/server/data/importer/importers/data/posts.js @@ -147,6 +147,26 @@ class PostsImporter extends BaseImporter { ...
Fixed import test: post duplication detection within a file to import no issue - with <URL>) duplicate slugs *within* a file are getting ignored 2) existing posts in the database and posts to import with the same slug, result in duplicates Further improvements regarding duplication detection will happen via #<I>.
TryGhost_Ghost
train
5678d71478b04bfb5f37fbfe7780068c2252488f
diff --git a/tcpip/stack/stack.go b/tcpip/stack/stack.go index <HASH>..<HASH> 100644 --- a/tcpip/stack/stack.go +++ b/tcpip/stack/stack.go @@ -295,28 +295,25 @@ func (s *Stack) NICSubnets() map[tcpip.NICID][]tcpip.Subnet { return nics } -// NICAddresses returns a map of NICIDs to their associated addresses. -func ...
Stub support for interface hardware addresses. PiperOrigin-RevId: <I>
google_netstack
train
9707ae8d5b0c65f2d170a23b497a2fd7120ea858
diff --git a/src/urh/controller/GeneratorTabController.py b/src/urh/controller/GeneratorTabController.py index <HASH>..<HASH> 100644 --- a/src/urh/controller/GeneratorTabController.py +++ b/src/urh/controller/GeneratorTabController.py @@ -67,6 +67,11 @@ class GeneratorTabController(QWidget): self.ui.prBarGener...
fix crash if assigned modulator gets deleted
jopohl_urh
train
33bb455365c039a35b46a4e5355a5abaacadbfe8
diff --git a/blockmanager.go b/blockmanager.go index <HASH>..<HASH> 100644 --- a/blockmanager.go +++ b/blockmanager.go @@ -481,12 +481,12 @@ func (b *blockManager) handleBlockMsg(bmsg *blockMsg) { // are in the memory pool (either the main pool or orphan pool). func (b *blockManager) haveInventory(invVect *btcwire.In...
Update for recent btcwire API changes.
btcsuite_btcd
train
c583589d78faeb891e81f55b13a05f4c50ef6fcb
diff --git a/src/test/java/one/util/streamex/StreamExHeadTailTest.java b/src/test/java/one/util/streamex/StreamExHeadTailTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/one/util/streamex/StreamExHeadTailTest.java +++ b/src/test/java/one/util/streamex/StreamExHeadTailTest.java @@ -450,7 +450,7 @@ public class ...
compilation error in eclipse Mars<I> fixed
amaembo_streamex
train
2798bb374b54ca83f412cb62b6164e9b08f55927
diff --git a/Databases/BaseDatabase.php b/Databases/BaseDatabase.php index <HASH>..<HASH> 100644 --- a/Databases/BaseDatabase.php +++ b/Databases/BaseDatabase.php @@ -3,7 +3,7 @@ namespace Dizda\CloudBackupBundle\Databases; use JMS\DiExtraBundle\Annotation as DI; use Symfony\Component\Filesystem\Filesystem; - +use ...
can handle process error with symfony process component
dizda_CloudBackupBundle
train
008c3d3433e6d7a2052e746b7774ebf0a5c45c4e
diff --git a/polyfills/Object.defineProperty/polyfill-ie7.js b/polyfills/Object.defineProperty/polyfill-ie7.js index <HASH>..<HASH> 100755 --- a/polyfills/Object.defineProperty/polyfill-ie7.js +++ b/polyfills/Object.defineProperty/polyfill-ie7.js @@ -15,7 +15,7 @@ Object.defineProperty = function defineProperty(object,...
Update defineProperty for old IE
Financial-Times_polyfill-service
train
7bc13bc193f8d326e58a830faf8f4a3a52de0f33
diff --git a/src/Item.php b/src/Item.php index <HASH>..<HASH> 100755 --- a/src/Item.php +++ b/src/Item.php @@ -539,9 +539,8 @@ class Item $html .= $html_container->s(); } - if ($this->getActive() && !$this->hasChildren() - && $this->generateUrl() == \Request::ur...
Change class for link to not contain active, and removed unnessary code
hnhdigital-os_laravel-navigation-builder
train
59679af8cbb1ca4df107fedc92f2ae9adf83b73d
diff --git a/xcessiv/models.py b/xcessiv/models.py index <HASH>..<HASH> 100644 --- a/xcessiv/models.py +++ b/xcessiv/models.py @@ -192,8 +192,10 @@ class BaseLearnerOrigin(Base): meta_feature_generator = Column(Text) metric_generators = Column(JsonEncodedDict) description = Column(JsonEncodedDict) - b...
introduce proper cascade-deletion of base_learner_origin->base_learner->stacked_ensemble (#<I>)
reiinakano_xcessiv
train
5731eb0772e9772065c635456779b6677505e14a
diff --git a/splitter.php b/splitter.php index <HASH>..<HASH> 100644 --- a/splitter.php +++ b/splitter.php @@ -10,7 +10,8 @@ * ``` * * - If no main branch name is provided "2.0" will be used by default. - * - If no plugin names are given, all of them will be splitted. + * - If no plugin names are given (or wildca...
minor improvement [skip ci]
quickapps_cms
train
2b385b8a3cd4d07b1b90acd6f0ac7e10969b3f8a
diff --git a/src/samples/objmesh/test_obj.py b/src/samples/objmesh/test_obj.py index <HASH>..<HASH> 100644 --- a/src/samples/objmesh/test_obj.py +++ b/src/samples/objmesh/test_obj.py @@ -94,6 +94,14 @@ class MyTransform(object): return numpy.asarray(self._m, dtype=numpy.float32) @staticmethod + ...
Slightly wrong implementation of pinch scaling.
cmbruns_pyopenvr
train
9f2d54a64a14863b117163d2b26ee272eddf189f
diff --git a/src/main/java/org/jboss/pressgang/ccms/rest/v1/elements/RESTServerEntitiesV1.java b/src/main/java/org/jboss/pressgang/ccms/rest/v1/elements/RESTServerEntitiesV1.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/pressgang/ccms/rest/v1/elements/RESTServerEntitiesV1.java +++ b/src/main/java/org/j...
Added BZ#<I> - RFE: Ask topic type and format when creating a new topic.
pressgang-ccms_PressGangCCMSRESTv1Common
train
981aead54b31d0a14e529330ec621c59bb356b9a
diff --git a/launch_control/tests/sw_profile.py b/launch_control/tests/sw_profile.py index <HASH>..<HASH> 100644 --- a/launch_control/tests/sw_profile.py +++ b/launch_control/tests/sw_profile.py @@ -154,3 +154,18 @@ class SoftwareProfileTestCase(MockerTestCase): # Ready self.mocker.replay() s...
Add unit tests for SoftwareProfile.inspect_system()
zyga_json-schema-validator
train
0adbadd8c033af23400caa6c4c35fde9cbfe0cc0
diff --git a/_config.php b/_config.php index <HASH>..<HASH> 100644 --- a/_config.php +++ b/_config.php @@ -14,13 +14,3 @@ * @license https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause * @link https://github.com/praxisnetau/silverware-model-filters */ - -// Define Module Constants: - -if (!defined('SILVERWA...
Removed dir and path from _config.php
praxisnetau_silverware-model-filters
train
9a19410ac22f85b9b62d372fa064efb1b37637f6
diff --git a/views/admin/emailhandling/show.blade.php b/views/admin/emailhandling/show.blade.php index <HASH>..<HASH> 100644 --- a/views/admin/emailhandling/show.blade.php +++ b/views/admin/emailhandling/show.blade.php @@ -173,7 +173,7 @@ <img src="{{{ Config::get('app.url') }}}/{{{ $record...
Fix attachment view in show.blade.php. #2
lasallecms_lasallecms-l5-lasallecmsemail-pkg
train
a82b0ac72c9ebbc287a0c384b624a4daf6dd8991
diff --git a/test_duct.py b/test_duct.py index <HASH>..<HASH> 100644 --- a/test_duct.py +++ b/test_duct.py @@ -103,7 +103,7 @@ def test_result(): def test_bytes(): - out = head(10).read(input="\x00"*100, decode=False) + out = head(10).read(input=b'\x00'*100, decode=False) assert b'\x00'*10 == out
test the input=b"..." case This dropped out of coverage recently.
oconnor663_duct.py
train
cb44ecc16c4c54e643fa20bc6e219618e106b41c
diff --git a/diff_cover/git_path.py b/diff_cover/git_path.py index <HASH>..<HASH> 100644 --- a/diff_cover/git_path.py +++ b/diff_cover/git_path.py @@ -32,8 +32,10 @@ class GitPathTool(object): # and src_path is `diff_cover/violations_reporter.py` # search for `violations_reporter.py` root_rel...
Check if the running directory is the same as git root
Bachmann1234_diff-cover
train
35a31d9381794f5a5944cbeb853a5f72593b9b25
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ if __name__ == '__main__': setup( name='varcode', packages=find_packages(), - version="0.3.14", + version="0.3.15", description="Variant annotation in Python", ...
Bump pyensembl/varcode version
openvax_varcode
train
48b6c2ececce9580864d51e49af556865327fb8f
diff --git a/classes/PodsMeta.php b/classes/PodsMeta.php index <HASH>..<HASH> 100644 --- a/classes/PodsMeta.php +++ b/classes/PodsMeta.php @@ -2670,7 +2670,13 @@ class PodsMeta { $static_cache = tribe( Static_Cache::class ); - $static_is_key_covered = $static_cache->get( $type . '/' . $object_name . '/' . $key,...
Additional cache improvements to handle when a type/name doesn't exist
pods-framework_pods
train
e56fcc0eba0e489f5c4c19073e083dd8c72d669d
diff --git a/master/buildbot/db/buildrequests.py b/master/buildbot/db/buildrequests.py index <HASH>..<HASH> 100644 --- a/master/buildbot/db/buildrequests.py +++ b/master/buildbot/db/buildrequests.py @@ -216,56 +216,60 @@ class BuildRequestsConnectorComponent(base.DBConnectorComponent): prefixes=['T...
use a try/finally to drop the temporary table
buildbot_buildbot
train
3a84be70ce4bcd42c13a74c56ca91b1abf88603e
diff --git a/PyFunceble/abstracts/package.py b/PyFunceble/abstracts/package.py index <HASH>..<HASH> 100644 --- a/PyFunceble/abstracts/package.py +++ b/PyFunceble/abstracts/package.py @@ -11,7 +11,7 @@ class Package: Sets the package name. """ - VERSION = "2.31.0.dev (Green Galago: Skitterbug)" + VERSI...
Fix AttributeError. Indeed, before this patch, I did not handle the fact that it was possible to have a non string input while decoding.
funilrys_PyFunceble
train
2045de192fc4dfe8071da141cb460892e939b883
diff --git a/daemon/cmd/policy_test.go b/daemon/cmd/policy_test.go index <HASH>..<HASH> 100644 --- a/daemon/cmd/policy_test.go +++ b/daemon/cmd/policy_test.go @@ -48,7 +48,6 @@ import ( envoy_api_v2_core "github.com/cilium/proxy/go/envoy/api/v2/core" envoy_api_v2_route "github.com/cilium/proxy/go/envoy/api/v2/route...
envoy: Remove deprecated regex program size field.
cilium_cilium
train
7295e6f9e1f6ace202ef8bc142adbc972241f8a9
diff --git a/codegen/src/main/java/org/web3j/codegen/unit/gen/CompilerClassLoader.java b/codegen/src/main/java/org/web3j/codegen/unit/gen/CompilerClassLoader.java index <HASH>..<HASH> 100644 --- a/codegen/src/main/java/org/web3j/codegen/unit/gen/CompilerClassLoader.java +++ b/codegen/src/main/java/org/web3j/codegen/uni...
Fixes folder path containing space
web3j_web3j
train
251f8d650f1d27b11867d4a557295cb74afa7aa1
diff --git a/channeldb/invoice_test.go b/channeldb/invoice_test.go index <HASH>..<HASH> 100644 --- a/channeldb/invoice_test.go +++ b/channeldb/invoice_test.go @@ -8,10 +8,10 @@ import ( "time" "github.com/davecgh/go-spew/spew" - "github.com/roasbeef/btcutil" + "github.com/lightningnetwork/lnd/lnwire" ) -func r...
channeldb: update the Invoice struct to use lnwire.MilliSatoshi
lightningnetwork_lnd
train
ae6b460c57d087bb837be85c9e6e02cd643f26a3
diff --git a/src/main/java/com/google/code/yanf4j/core/impl/TextLineCodecFactory.java b/src/main/java/com/google/code/yanf4j/core/impl/TextLineCodecFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/google/code/yanf4j/core/impl/TextLineCodecFactory.java +++ b/src/main/java/com/google/code/yanf4j/core/impl...
(feat) Tweak StringEncoder performance.
killme2008_xmemcached
train
044faa537503978d8686f5b513608dac086f747c
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -311,7 +311,7 @@ module.exports = function ( grunt ) { '{demos,src}/**/*.less', '.{csslintrc,jscsrc,jshintignore,jshintrc}' ], - tasks: '_test' + tasks: 'build' } } );
Follow-up If2da<I>a2: Fix grunt watch '_test' is not a task. Change it to 'build' as running karma every time you touch a file is a but overkill. Change-Id: I8ca6ef<I>ea<I>beca2f6cab<I>b7de4ce5ab<I>e
wikimedia_oojs-ui
train
95ac6e3e80e3d0db9e5e7f109e959db557f35d62
diff --git a/openupgradelib/openupgrade.py b/openupgradelib/openupgrade.py index <HASH>..<HASH> 100644 --- a/openupgradelib/openupgrade.py +++ b/openupgradelib/openupgrade.py @@ -545,17 +545,24 @@ def rename_models(cr, model_spec): old, new) _old = old.replace('.', '_') _new = new...
[FIX] rename_models
OCA_openupgradelib
train
d9e4b70afbe7d670d61ba6523d286f04a25089b8
diff --git a/src/org/mockito/internal/invocation/finder/VerifiableInvocationsFinder.java b/src/org/mockito/internal/invocation/finder/VerifiableInvocationsFinder.java index <HASH>..<HASH> 100644 --- a/src/org/mockito/internal/invocation/finder/VerifiableInvocationsFinder.java +++ b/src/org/mockito/internal/invocation/f...
make VerifiableInvocationsFinder.RemoveIgnoredForVerification private
mockito_mockito
train
04dd3cc95ff152405ff72c5dd7258b3ff961d8d8
diff --git a/lib/fluent/buffer.rb b/lib/fluent/buffer.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/buffer.rb +++ b/lib/fluent/buffer.rb @@ -139,7 +139,9 @@ module Fluent # This configuration assumes plugins to send records to a remote server. # Local file based plugins which should provide more reliability...
Add descriptions for Fluent::BasicBuffer This is super class for Fluent::FileBuffer and Fluent::MemoryBuffer. See followings: * <URL>
fluent_fluentd
train
a37b20954cd0ef4493aedad5567fbb18f7ebcb5c
diff --git a/resources/lang/it-IT/forms.php b/resources/lang/it-IT/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/it-IT/forms.php +++ b/resources/lang/it-IT/forms.php @@ -168,7 +168,7 @@ return [ 'analytics' => [ 'analytics_google' => 'Codice Google Analytics', 'anal...
New translations forms.php (Italian)
CachetHQ_Cachet
train
eeb351e49c6916c447b05033bc37e25c45663db3
diff --git a/js/exx.js b/js/exx.js index <HASH>..<HASH> 100644 --- a/js/exx.js +++ b/js/exx.js @@ -82,6 +82,7 @@ module.exports = class exx extends Exchange { }, 'commonCurrencies': { 'CAN': 'Content and AD Network', + 'TV': 'TIV', }, '...
TV in exx is Ti-Value in hitbtc: TV -> tokenville TIV -> Ti-Value none exists on CMC, so I wuold take hitbtc naming. also, Ti-Value not updated their twitter since january, so probably its dying, so IMO better give TV to tokenville
ccxt_ccxt
train
2e5653ab1c9b961d2637f5bc43bf24dd8167505c
diff --git a/ordered_set.py b/ordered_set.py index <HASH>..<HASH> 100644 --- a/ordered_set.py +++ b/ordered_set.py @@ -160,7 +160,7 @@ class OrderedSet(collections.MutableSet): *does* raise an error when asked to remove a non-existent item. """ if key in self: - i = self.items.inde...
Make .discard run efficiently. Fixes #<I>.
LuminosoInsight_ordered-set
train
2ac4d81b4d537436991241219821fe0ee7f130fd
diff --git a/packages/node_modules/@ciscospark/internal-plugin-conversation/src/decryption-transforms.js b/packages/node_modules/@ciscospark/internal-plugin-conversation/src/decryption-transforms.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@ciscospark/internal-plugin-conversation/src/decryption-transform...
fix(ecm): update comments
webex_spark-js-sdk
train
85c2f614d669f196831dfd9de7a940acfef69958
diff --git a/provider/openstack/provider.go b/provider/openstack/provider.go index <HASH>..<HASH> 100644 --- a/provider/openstack/provider.go +++ b/provider/openstack/provider.go @@ -1125,12 +1125,12 @@ func (e *Environ) startInstance( ) if e.ecfg().useOpenstackGBP() { - client := e.neutron() + neutronClient :=...
Add message to no network instance start failure. Adding a single found internal openstack network to the model's config would be ideal. Unable to do so correctly for model's other than the controller at this time. Add an error message to a failure due to not configured error. There are some OpenStack configuration ...
juju_juju
train
d4c7e1f67f79cd7fa78779ca0d95efe5b453027c
diff --git a/go/libkb/full_self_cacher.go b/go/libkb/full_self_cacher.go index <HASH>..<HASH> 100644 --- a/go/libkb/full_self_cacher.go +++ b/go/libkb/full_self_cacher.go @@ -166,10 +166,7 @@ func (m *CachedFullSelf) WithUser(arg LoadUserArg, f func(u *User) error) (err e var u *User if m.me != nil && m.isSelfLoa...
restore original behavior of WithUser (#<I>)
keybase_client
train
a84690c83704702f7f6ee1c5e3b3ca6add90d0ac
diff --git a/lib/jsduck/lint.rb b/lib/jsduck/lint.rb index <HASH>..<HASH> 100644 --- a/lib/jsduck/lint.rb +++ b/lib/jsduck/lint.rb @@ -17,6 +17,7 @@ module JsDuck warn_unnamed warn_optional_params warn_duplicate_params + warn_duplicate_members end # print warning for each global me...
Add warning for duplicate members. Implementing this immediately discovered several bugs in ExtJS docs.
senchalabs_jsduck
train
2d33c44b57f5c1d13e1d9e8b50a7ce802cf54b7f
diff --git a/lib/boxen/runner.rb b/lib/boxen/runner.rb index <HASH>..<HASH> 100644 --- a/lib/boxen/runner.rb +++ b/lib/boxen/runner.rb @@ -66,9 +66,9 @@ module Boxen # --disable-services stops all services if flags.disable_services? - services.each do |service| - puts "Disabling #{servic...
Use that Boxen::Service in the Runner Isn't that so much nicer? Yes, yes it is.
boxen_boxen
train
937274657b35f372ec211979f87b4d33c1d26343
diff --git a/ui/scripts/compile.rb b/ui/scripts/compile.rb index <HASH>..<HASH> 100644 --- a/ui/scripts/compile.rb +++ b/ui/scripts/compile.rb @@ -17,7 +17,6 @@ app = [ "javascripts/app/controllers.js", "javascripts/app/views.js", "javascripts/app/helpers.js", - "javascripts/app/components.js", ] libs.eac...
ui: remove components from compile
hashicorp_consul
train