diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/install/class/ReadDirLoadModule.php b/install/class/ReadDirLoadModule.php index <HASH>..<HASH> 100755 --- a/install/class/ReadDirLoadModule.php +++ b/install/class/ReadDirLoadModule.php @@ -4,16 +4,19 @@ namespace BFW\Install; class ReadDirLoadModule extends ReadDirectory { + /** + * {@inheritdo...
ReadDirLoadModule : Update docblock and fix on action and check file name
diff --git a/worker/setup.py b/worker/setup.py index <HASH>..<HASH> 100755 --- a/worker/setup.py +++ b/worker/setup.py @@ -125,15 +125,27 @@ else: 'twisted >= 8.0.0', 'future', ] + + # Unit test hard dependencies. + test_deps = [ + 'mock', + ] + + setup_args['tests_require'] = ...
set proper tests_require in worker
diff --git a/openquake/commonlib/readinput.py b/openquake/commonlib/readinput.py index <HASH>..<HASH> 100644 --- a/openquake/commonlib/readinput.py +++ b/openquake/commonlib/readinput.py @@ -214,7 +214,9 @@ def get_mesh(oqparam): elif 'site_model' in oqparam.inputs: coords = [(param.lon, param.lat, param....
Changed management of mesh.from_site_model
diff --git a/txzmq/test/test_reactor_shutdown.py b/txzmq/test/test_reactor_shutdown.py index <HASH>..<HASH> 100644 --- a/txzmq/test/test_reactor_shutdown.py +++ b/txzmq/test/test_reactor_shutdown.py @@ -3,8 +3,6 @@ Tests for L{txzmq.factory} automatic shutdown. The _z_ infix is used to have this test a last-called o...
Fixes for pyflakes
diff --git a/src/main/java/org/dita/dost/util/Constants.java b/src/main/java/org/dita/dost/util/Constants.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dita/dost/util/Constants.java +++ b/src/main/java/org/dita/dost/util/Constants.java @@ -556,6 +556,7 @@ public final class Constants { public static fin...
Add DITA <I> include class
diff --git a/lib/fudge/tasks/composite_task.rb b/lib/fudge/tasks/composite_task.rb index <HASH>..<HASH> 100644 --- a/lib/fudge/tasks/composite_task.rb +++ b/lib/fudge/tasks/composite_task.rb @@ -25,13 +25,24 @@ module Fudge end def output_message(t) - args_text = join_arguments(t) + me...
tidied up composite task
diff --git a/wagtailmenus/templatetags/menu_tags.py b/wagtailmenus/templatetags/menu_tags.py index <HASH>..<HASH> 100644 --- a/wagtailmenus/templatetags/menu_tags.py +++ b/wagtailmenus/templatetags/menu_tags.py @@ -530,14 +530,9 @@ def prime_menu_items( allow_repeating_parents and use_specific ...
Don't include ids for pages above SECTION_ROOT_DEPTH in ancestor IDs, eliminating the need to check page depth in prime_menu_items
diff --git a/.eslintrc.js b/.eslintrc.js index <HASH>..<HASH> 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,6 +9,10 @@ module.exports = { env: { browser: true, node: true, + + // babel's transform-runtime converts references to ES6 globals such as + // Promise and Map to core-j...
Add es6 to eslint environments
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( long_description=open('README.md').read(), author = u'Juan Pedro Fisanotti', author_email = 'fisadev@gmail.com', - url='', + url='http://github.com/fisadev/simpleai', packages=['...
Url filled on setup.py
diff --git a/dcos/nodeutil/util.go b/dcos/nodeutil/util.go index <HASH>..<HASH> 100644 --- a/dcos/nodeutil/util.go +++ b/dcos/nodeutil/util.go @@ -355,17 +355,9 @@ func (d *dcosInfo) MesosID(ctx context.Context) (string, error) { return "", ErrNodeInfo{fmt.Sprintf("Local node's IP %s not found in mesos state response...
(fix) dc/os cluster id is available on all nodes Prior to this commit, the dcos-go nodeutil only returned a cluster ID for master nodes. In fact, this UUID file is present on all nodes in the cluster. This commit removes the check for the master role.
diff --git a/textx/textx.py b/textx/textx.py index <HASH>..<HASH> 100644 --- a/textx/textx.py +++ b/textx/textx.py @@ -550,7 +550,8 @@ def str_match_SA(parser, node, children): match = parser.keyword_regex.match(to_match) if match and match.span() == (0, len(to_match)): regex_match = RegExMatch(r'{}\...
Better reporting of expected matches for keyword-like matches.
diff --git a/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/PersistenceManager.php b/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/PersistenceManager.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/Doctrine/PersistenceManager.php +++ b/TYPO3.Flow/Classes/TYPO3/Flow/Persistence/D...
TASK: Adjust exception being caught to DBALException
diff --git a/host.go b/host.go index <HASH>..<HASH> 100644 --- a/host.go +++ b/host.go @@ -3,6 +3,7 @@ package host import ( "context" + connmgr "github.com/libp2p/go-libp2p-connmgr" inet "github.com/libp2p/go-libp2p-net" peer "github.com/libp2p/go-libp2p-peer" pstore "github.com/libp2p/go-libp2p-peerstore" ...
WIP: add ConnManager interface method
diff --git a/src/Model.php b/src/Model.php index <HASH>..<HASH> 100644 --- a/src/Model.php +++ b/src/Model.php @@ -367,6 +367,9 @@ abstract class Model implements \JsonSerializable { $this->changes = []; $this->data = null; + foreach ($this->foreign as $model) { + $model->reset(...
Fix reseted Model with Foreigns Foreigns where kept intact, and where accesible even when the corresponding column was set to null.
diff --git a/src/Console/Application.php b/src/Console/Application.php index <HASH>..<HASH> 100644 --- a/src/Console/Application.php +++ b/src/Console/Application.php @@ -17,7 +17,7 @@ class Application extends BaseApplication /** * @var string */ - const VERSION = '0.7.9'; + const VERSION = '0.7...
Update version number to <I>
diff --git a/conda_manager/api/conda_api.py b/conda_manager/api/conda_api.py index <HASH>..<HASH> 100644 --- a/conda_manager/api/conda_api.py +++ b/conda_manager/api/conda_api.py @@ -14,6 +14,7 @@ import platform import re import sys import yaml +import time # Third party imports from qtpy.QtCore import QByteArr...
Enforce <I>ms delay when starting conda qprocess
diff --git a/lib/Profile.php b/lib/Profile.php index <HASH>..<HASH> 100644 --- a/lib/Profile.php +++ b/lib/Profile.php @@ -33,9 +33,9 @@ class Profile { $data = array( 'elapsed' => $elapsed(), - 'memory before' => $memory_before, - 'memory after' => $memory_after, - ...
We don't want spaces in the arrays we are creating for the profile information. Figured it was best to just fix it at the source.
diff --git a/lib/hocon/version.rb b/lib/hocon/version.rb index <HASH>..<HASH> 100644 --- a/lib/hocon/version.rb +++ b/lib/hocon/version.rb @@ -1,5 +1,5 @@ module Hocon module Version - STRING = '1.2.1' + STRING = '1.2.2.SNAPSHOT' end end
(MAINT) Update version for release
diff --git a/tests/downscaling/conftest.py b/tests/downscaling/conftest.py index <HASH>..<HASH> 100644 --- a/tests/downscaling/conftest.py +++ b/tests/downscaling/conftest.py @@ -62,3 +62,27 @@ def qds_month(): coords={"quantile": [0, 0.3, 5.0, 7, 1], "month": range(1, 13)}, attrs={"group": "time.mont...
New simple fixture to get obs, sim, fut from xr tuto
diff --git a/addScript.js b/addScript.js index <HASH>..<HASH> 100644 --- a/addScript.js +++ b/addScript.js @@ -3,15 +3,25 @@ Author Tobias Koppers @sokra */ module.exports = function(src) { + function log(error) { + (typeof console !== "undefined") + && (console.error || console.log)("[Script Loader]", error); + ...
fix: IE =< 8 incompatibility regression (#<I>)
diff --git a/hack/preload-images/generate.go b/hack/preload-images/generate.go index <HASH>..<HASH> 100644 --- a/hack/preload-images/generate.go +++ b/hack/preload-images/generate.go @@ -87,7 +87,7 @@ func generateTarball(kubernetesVersion, containerRuntime, tarballFilename string kcfg := config.KubernetesConfig{ ...
Fix hack binary, as pointed out by golangci-lint
diff --git a/ontrack-delivery/publish.py b/ontrack-delivery/publish.py index <HASH>..<HASH> 100755 --- a/ontrack-delivery/publish.py +++ b/ontrack-delivery/publish.py @@ -77,7 +77,7 @@ def github_publish(options): print "[publish] Release ID is %d" % releaseid # Attach artifacts to the release github.upl...
Release: Not using the `dir` option any longer (current directory is fine)
diff --git a/lib/race.js b/lib/race.js index <HASH>..<HASH> 100644 --- a/lib/race.js +++ b/lib/race.js @@ -4,7 +4,7 @@ import once from './internal/once'; /** * Runs the `tasks` array of functions in parallel, without waiting until the - * previous function has completed. Once any of the `tasks` completed or pass ...
fix second minor typo in race docs
diff --git a/framework/db/Connection.php b/framework/db/Connection.php index <HASH>..<HASH> 100644 --- a/framework/db/Connection.php +++ b/framework/db/Connection.php @@ -571,8 +571,12 @@ class Connection extends Component } elseif (($pos = strpos($this->dsn, ':')) !== false) { $driver = s...
Fixed #<I>: changed sqlsrv pdo class selection
diff --git a/sys/reaper/reaper_unix.go b/sys/reaper/reaper_unix.go index <HASH>..<HASH> 100644 --- a/sys/reaper/reaper_unix.go +++ b/sys/reaper/reaper_unix.go @@ -31,7 +31,7 @@ import ( // ErrNoSuchProcess is returned when the process no longer exists var ErrNoSuchProcess = errors.New("no such process") -const buff...
Change bufferSize back to <I> Shim use non-blocking send now, there is no need to set bufferSize to <I>, it's a waste.
diff --git a/subliminal/services/__init__.py b/subliminal/services/__init__.py index <HASH>..<HASH> 100644 --- a/subliminal/services/__init__.py +++ b/subliminal/services/__init__.py @@ -83,9 +83,11 @@ class ServiceBase(object): def query(self, *args): """Make the actual query""" + pass de...
Add pass to some ServiceBase methods
diff --git a/resources/lang/sv-SE/cachet.php b/resources/lang/sv-SE/cachet.php index <HASH>..<HASH> 100644 --- a/resources/lang/sv-SE/cachet.php +++ b/resources/lang/sv-SE/cachet.php @@ -53,7 +53,7 @@ return [ // Service Status 'service' => [ - 'good' => '[0,1] Systemet fungerar |[2,Inf] Alla system...
New translations cachet.php (Swedish)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup from codado import _version
switch to setuptools.setup() so wheels will build
diff --git a/src/Analyzer/ModelAnalyzer.php b/src/Analyzer/ModelAnalyzer.php index <HASH>..<HASH> 100644 --- a/src/Analyzer/ModelAnalyzer.php +++ b/src/Analyzer/ModelAnalyzer.php @@ -15,7 +15,9 @@ use Czim\CmsModels\Support\Enums\RelationType; use Exception; use Illuminate\Database\Eloquent\Model; use Illuminate\Dat...
Fixed missing imports for modelanalyzer relation types
diff --git a/js/core/telemetryV3Interface.js b/js/core/telemetryV3Interface.js index <HASH>..<HASH> 100644 --- a/js/core/telemetryV3Interface.js +++ b/js/core/telemetryV3Interface.js @@ -128,12 +128,9 @@ var Telemetry = (function() { this.telemetry.assess = function(data, options) { instance.updateValues(...
Issue #SB-<I> fix: Default assess event version will be overridden
diff --git a/src/timepicker/timepicker.js b/src/timepicker/timepicker.js index <HASH>..<HASH> 100644 --- a/src/timepicker/timepicker.js +++ b/src/timepicker/timepicker.js @@ -27,6 +27,7 @@ export class MdTimePicker { twelvehour: this.twelveHour }; $(this.element).pickatime(options); + this.element.v...
fix(md-timepicker): Set value if assigned before the attach
diff --git a/src/App.php b/src/App.php index <HASH>..<HASH> 100644 --- a/src/App.php +++ b/src/App.php @@ -440,10 +440,13 @@ class App extends \samson\cms\App // form relative path to the image $dir = quotemeta(__SAMSON_BASE__); - if ($dir == '/') { - return substr($path, 1); - ...
Temporary fixed bug with removing first character from image path loigc based on __SAMSON_BASE @omaximus check it!
diff --git a/aioboto3/s3/inject.py b/aioboto3/s3/inject.py index <HASH>..<HASH> 100644 --- a/aioboto3/s3/inject.py +++ b/aioboto3/s3/inject.py @@ -190,14 +190,15 @@ async def upload_fileobj(self, Fileobj: BinaryIO, Bucket: str, Key: str, ExtraAr # Success, add the result to the finished_parts, increment ...
Changed callback to use current bytes rather than cumulative bytes
diff --git a/src/Controller/Base.php b/src/Controller/Base.php index <HASH>..<HASH> 100644 --- a/src/Controller/Base.php +++ b/src/Controller/Base.php @@ -143,7 +143,6 @@ abstract class Base extends BaseMiddle $oAsset->load('admin.min.js', 'nails/module-admin'); $oAsset->load('nails.admin.min.js', 'NA...
Removes outdated Nails API JS lib
diff --git a/pex/pex_bootstrapper.py b/pex/pex_bootstrapper.py index <HASH>..<HASH> 100644 --- a/pex/pex_bootstrapper.py +++ b/pex/pex_bootstrapper.py @@ -156,6 +156,13 @@ def bootstrap_pex(entry_point): pex.PEX(entry_point).execute() +# NB: This helper is used by third party libs - namely https://github.com/wic...
Restore `pex.pex_bootstrapper.is_compressed` API. (#<I>) This was eliminated in #<I> since it was (locally) unused but it turns out it was used over in lambdex. The long term fix allowing safe removal of the API is tracked by: <URL>
diff --git a/mr/awsome/config.py b/mr/awsome/config.py index <HASH>..<HASH> 100644 --- a/mr/awsome/config.py +++ b/mr/awsome/config.py @@ -1,6 +1,7 @@ from mr.awsome.common import Hooks from ConfigParser import RawConfigParser import os +import warnings class BaseMassager(object): @@ -89,15 +90,19 @@ class Conf...
Warn about deprecated section names.
diff --git a/contrib/ovirt/test_scenarios/bootstrap.py b/contrib/ovirt/test_scenarios/bootstrap.py index <HASH>..<HASH> 100644 --- a/contrib/ovirt/test_scenarios/bootstrap.py +++ b/contrib/ovirt/test_scenarios/bootstrap.py @@ -172,14 +172,14 @@ def add_iscsi_storage_domain(prefix): api = prefix.virt_env.engine_vm(...
Revert ssh ret changes until ssh methods are done Change-Id: I<I>fc<I>a<I>bac3d<I>b<I>c<I>f3f<I>afadec
diff --git a/closure/goog/fx/dragger.js b/closure/goog/fx/dragger.js index <HASH>..<HASH> 100644 --- a/closure/goog/fx/dragger.js +++ b/closure/goog/fx/dragger.js @@ -469,7 +469,7 @@ goog.fx.Dragger.prototype.setupDragHandlers = function() { this.eventHandler_.listen( doc, [goog.events.EventType.TOUCHMOVE, ...
Closure: Dragger: Make touchmove listener cancellable to prevent Chrome from panning. See <URL>
diff --git a/hererocks.py b/hererocks.py index <HASH>..<HASH> 100755 --- a/hererocks.py +++ b/hererocks.py @@ -1173,7 +1173,6 @@ def main(argv=None): bat_h.write(b"set exitcode=%errorlevel%\r\n") bat_h.write(b"if %exitcode% equ 0 (\r\n") - bat_h.write(b" endlocal\r\n") bat_h.write...
Don't run endlocal before recursive call
diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ClientUpgradeCodec.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ClientUpgradeCodec.java index <HASH>..<HASH> 100644 --- a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ClientUpgradeCodec.java +++ b/codec-http2/s...
Remove unnecessary line in Http2ClientUpgradeCodec (#<I>) Motivation: To clean up code. Modification: Remove unnecessary line. Result: There's no functional change.
diff --git a/src/main/java/com/rabbitmq/http/client/domain/AbstractPagination.java b/src/main/java/com/rabbitmq/http/client/domain/AbstractPagination.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/rabbitmq/http/client/domain/AbstractPagination.java +++ b/src/main/java/com/rabbitmq/http/client/domain/AbstractP...
Initialize AbstractPagination with page 1 when initialized directly from an array
diff --git a/spring-vaadin/src/main/java/org/vaadin/spring/servlet/SpringAwareUIProvider.java b/spring-vaadin/src/main/java/org/vaadin/spring/servlet/SpringAwareUIProvider.java index <HASH>..<HASH> 100644 --- a/spring-vaadin/src/main/java/org/vaadin/spring/servlet/SpringAwareUIProvider.java +++ b/spring-vaadin/src/main...
Now using the application context to ask for annotations
diff --git a/DependencyInjection/MonologExtension.php b/DependencyInjection/MonologExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/MonologExtension.php +++ b/DependencyInjection/MonologExtension.php @@ -125,7 +125,7 @@ class MonologExtension extends Extension $handler['level'], ...
[EventDispatcher] Allow registration of arbitrary callbacks This in effect removes the direct link between event name and the method name on the handler. Any callback can be given as a handler and the event name becomes an arbitrary string. Allowing for easier namespacing (see next commit)
diff --git a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php index <HASH>..<HASH> 100644 --- a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php @@ -148,7 +148,7 @@ class BatchUpdateBasePlugin { public static fun...
Scrutinizer Auto-Fixes (#<I>) This commit consists of patches automatically generated for this project on <URL>
diff --git a/cbamf/interpolation.py b/cbamf/interpolation.py index <HASH>..<HASH> 100644 --- a/cbamf/interpolation.py +++ b/cbamf/interpolation.py @@ -146,8 +146,7 @@ class ChebyshevInterpolation1D(object): Evaluates an individual Chebyshev polynomial `k` in coordinate space with proper transformation...
quicker way to get chebval for a single poly
diff --git a/astroid/inference.py b/astroid/inference.py index <HASH>..<HASH> 100644 --- a/astroid/inference.py +++ b/astroid/inference.py @@ -307,6 +307,8 @@ def infer_attribute(self, context=None): except exceptions._NonDeducibleTypeHierarchy: # Can't determine anything useful. ...
Don't crash upon invalid contex on attr. inference (#<I>)
diff --git a/plugin/hosts/hostsfile_test.go b/plugin/hosts/hostsfile_test.go index <HASH>..<HASH> 100644 --- a/plugin/hosts/hostsfile_test.go +++ b/plugin/hosts/hostsfile_test.go @@ -45,16 +45,13 @@ var ( singlelinehosts = `127.0.0.2 odin` ipv4hosts = `# See https://tools.ietf.org/html/rfc1123. # - # The l...
The IPv4 parser no longer accepts leading zeros (#<I>)
diff --git a/src/extensions/filter-control/utils.js b/src/extensions/filter-control/utils.js index <HASH>..<HASH> 100644 --- a/src/extensions/filter-control/utils.js +++ b/src/extensions/filter-control/utils.js @@ -359,7 +359,10 @@ export function createControls (that, header) { $.each(that.columns, (_, column) => {...
Allow filtering of not visible columns if filterControlContainer is used (#<I>)
diff --git a/src/OoGlee/Domain/Providers/LaravelServiceProvider.php b/src/OoGlee/Domain/Providers/LaravelServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/OoGlee/Domain/Providers/LaravelServiceProvider.php +++ b/src/OoGlee/Domain/Providers/LaravelServiceProvider.php @@ -120,14 +120,6 @@ abstract class LaravelSe...
fix: Enable dynamic config class resolution
diff --git a/scripts/create_index.js b/scripts/create_index.js index <HASH>..<HASH> 100644 --- a/scripts/create_index.js +++ b/scripts/create_index.js @@ -1,7 +1,7 @@ const child_process = require('child_process'); const config = require('pelias-config').generate(); const es = require('elasticsearch'); -const SUPPOR...
Add flexibility regarding older minor ES versions In order to allow people using reasonably new, but not the newest, releases on each of our supported Elasticsearch major versions, this lowers the version requirements sightly. We may continue to update these versions over time either for increased flexibility or to r...
diff --git a/tests/__init__.py b/tests/__init__.py index <HASH>..<HASH> 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -11,6 +11,7 @@ try: except ImportError: from io import StringIO import subprocess +import sys from tempfile import NamedTemporaryFile import unittest @@ -25,7 +26,10 @@ import uti...
Use StringIO or BytesIO as stdin/stderr replacement as needed.
diff --git a/src/_pytest/junitxml.py b/src/_pytest/junitxml.py index <HASH>..<HASH> 100644 --- a/src/_pytest/junitxml.py +++ b/src/_pytest/junitxml.py @@ -410,7 +410,7 @@ def pytest_addoption(parser): "Write captured log messages to JUnit report: " "one of no|system-out|system-err", default="...
Remove incorrect choices comment (#<I>)
diff --git a/benchexec/container.py b/benchexec/container.py index <HASH>..<HASH> 100644 --- a/benchexec/container.py +++ b/benchexec/container.py @@ -231,9 +231,10 @@ def get_mount_points(): (this avoids encoding problems with mount points with problematic characters). """ def decode_path(path): - ...
unescape more charcters in /proc/self/mounts
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -398,7 +398,8 @@ export function firefoxStrictMinVersion(manifestJson) { if ( manifestJson.applications && manifestJson.applications.gecko && - manifestJson.applications.gecko.strict_min_version...
Prevent error when strict_min_version is not a string value (#<I>)
diff --git a/test/cli.js b/test/cli.js index <HASH>..<HASH> 100644 --- a/test/cli.js +++ b/test/cli.js @@ -6,7 +6,10 @@ var expect = require('code').expect; var Chalk = require('chalk'); var CLI = require('../lib/cli'); var Commands = require('../lib/commands'); -var fullHelp = Object.keys(Commands).map(function (co...
adds the version # to the help header cause it's useful
diff --git a/java/client/src/main/java/com/youtube/vitess/client/cursor/CursorWithError.java b/java/client/src/main/java/com/youtube/vitess/client/cursor/CursorWithError.java index <HASH>..<HASH> 100644 --- a/java/client/src/main/java/com/youtube/vitess/client/cursor/CursorWithError.java +++ b/java/client/src/main/java...
Fixing a java error. Was picked up by our internal java compiler: a proto returned value cannot be null.
diff --git a/tests/test_process.py b/tests/test_process.py index <HASH>..<HASH> 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -158,7 +158,7 @@ class ProcessTestCase(unittest.TestCase): cfg = {"noprealloc": True, "smallfiles": True, "oplogSize": 10} config_path = process.write_confi...
Update tests/test_process.py
diff --git a/enrol/ldap/db/install.php b/enrol/ldap/db/install.php index <HASH>..<HASH> 100644 --- a/enrol/ldap/db/install.php +++ b/enrol/ldap/db/install.php @@ -96,5 +96,7 @@ function xmldb_enrol_ldap_install() { } // Remove a setting that's never been used at all - unset_config('enrol_ldap_user_member...
enrol/ldap: MDL-<I> don't use $CFG->enrol_ldap_user_memberfield if it's not defined
diff --git a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/io/binary/type-serializers.js b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/io/binary/type-serializers.js index <HASH>..<HASH> 100644 --- a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/struc...
Switch from String.replaceAll to String.replace for support of older JS/node
diff --git a/inspire_dojson/hep/rules/bd0xx.py b/inspire_dojson/hep/rules/bd0xx.py index <HASH>..<HASH> 100644 --- a/inspire_dojson/hep/rules/bd0xx.py +++ b/inspire_dojson/hep/rules/bd0xx.py @@ -103,20 +103,13 @@ def dois(self, key, value): def _get_material(value): MATERIAL_MAP = { - 'addend...
hep: allow more materials in dois
diff --git a/lib/models.js b/lib/models.js index <HASH>..<HASH> 100644 --- a/lib/models.js +++ b/lib/models.js @@ -45,10 +45,10 @@ Models.prototype.run = function(model_id, data, params) { let batches = []; if (this.ml.settings.auto_batch) { - for (let ii=0; ii < data.length; ii+=ml.settings.batch_size...
Solves "ReferenceError: ml is not defined" #7
diff --git a/src/server/pps/server/worker_rc.go b/src/server/pps/server/worker_rc.go index <HASH>..<HASH> 100644 --- a/src/server/pps/server/worker_rc.go +++ b/src/server/pps/server/worker_rc.go @@ -279,7 +279,7 @@ func (a *apiServer) getWorkerOptions(pipelineName string, rcName string, Name: client.PPSWorkerVo...
No, use limits on GPU k8s <I> now requires gpu limits to be set
diff --git a/testing/test_pdb.py b/testing/test_pdb.py index <HASH>..<HASH> 100644 --- a/testing/test_pdb.py +++ b/testing/test_pdb.py @@ -853,7 +853,7 @@ class TestDebuggingBreakpoints: Test that supports breakpoint global marks on Python 3.7+ and not on CPython 3.5, 2.7 """ - if sys....
Fix for Python 4: replace unsafe PY3 with PY2
diff --git a/superset/security.py b/superset/security.py index <HASH>..<HASH> 100644 --- a/superset/security.py +++ b/superset/security.py @@ -37,6 +37,10 @@ ADMIN_ONLY_VIEW_MENUS = { 'RoleModelView', 'Security', 'UserDBModelView', + 'UserLDAPModelView', + 'UserOAuthModelView', + 'UserOIDModelVi...
[security] Adding all derived FAB UserModelView views to admin only (#<I>)
diff --git a/ara/clients/offline.py b/ara/clients/offline.py index <HASH>..<HASH> 100644 --- a/ara/clients/offline.py +++ b/ara/clients/offline.py @@ -46,11 +46,18 @@ class AraOfflineClient(object): def _request(self, method, endpoint, **kwargs): func = getattr(self.client, method) - response = f...
Don't pass kwargs to the client if there isn't any This resolves an issue where doing a request (i.e, GET) without kwargs would fail. Change-Id: Iac5be<I>bd1a<I>c0ac0dbca<I>e<I>bebe
diff --git a/dexmaker/src/test/java/com/google/dexmaker/stock/ProxyBuilderTest.java b/dexmaker/src/test/java/com/google/dexmaker/stock/ProxyBuilderTest.java index <HASH>..<HASH> 100644 --- a/dexmaker/src/test/java/com/google/dexmaker/stock/ProxyBuilderTest.java +++ b/dexmaker/src/test/java/com/google/dexmaker/stock/Pro...
-Gave some expected exceptions in ProxyBuilderTest more descriptive variable names.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,12 @@ __author__ = 'ahmetdal' from setuptools import setup, find_packages try: - long_description = open('README.md').read() -except IOError: - long_description = '' + from pypandoc import convert + + r...
rst conversion of README.md file is added for PyPI page.
diff --git a/Generator/YMLFile.php b/Generator/YMLFile.php index <HASH>..<HASH> 100644 --- a/Generator/YMLFile.php +++ b/Generator/YMLFile.php @@ -21,7 +21,7 @@ class YMLFile extends File { parent::mergeComponentData($additional_component_data); // The hacky yaml_inline_level property may not be an array! -...
Fixed bug with YML generator expecting property to be set.
diff --git a/core/src/main/java/org/bitcoinj/script/Script.java b/core/src/main/java/org/bitcoinj/script/Script.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/bitcoinj/script/Script.java +++ b/core/src/main/java/org/bitcoinj/script/Script.java @@ -101,7 +101,7 @@ public class Script { public Script(...
Script: don't query the clock when parsing a script. This actually shows up in Android performance profiles.
diff --git a/api/models/task.go b/api/models/task.go index <HASH>..<HASH> 100644 --- a/api/models/task.go +++ b/api/models/task.go @@ -52,7 +52,7 @@ type Task struct { Read Only: true */ - AppName string `json:"route_name,omitempty"` + AppName string `json:"app_name,omitempty"` Path string `json:"path"` dif...
Updated route_name in json to app_name.
diff --git a/rootpy/io/pickler.py b/rootpy/io/pickler.py index <HASH>..<HASH> 100644 --- a/rootpy/io/pickler.py +++ b/rootpy/io/pickler.py @@ -293,7 +293,8 @@ class Unpickler(pickle.Unpickler): return obj def persistent_load(self, pid): - pid = pid.decode('utf-8') + if sys.version_info[0] ...
fix broken pickler test due to py2 compat string handling
diff --git a/lib/weblib.php b/lib/weblib.php index <HASH>..<HASH> 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -717,6 +717,10 @@ function highlight($needle, $haystack, $case=0, /// this function after performing any conversions to HTML. /// Function found here: http://forums.devshed.com/t67822/scdaa2d1c3d4bacb...
Prevent funny-looking text when trying to highlight a null string
diff --git a/mysql/toolkit/connector.py b/mysql/toolkit/connector.py index <HASH>..<HASH> 100644 --- a/mysql/toolkit/connector.py +++ b/mysql/toolkit/connector.py @@ -68,8 +68,10 @@ class Connector: """Execute a single SQL query without returning a result.""" self._cursor.execute(command) sel...
Added return statements for conditional validation
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -17,9 +17,13 @@ module.exports = function(config) { debug('initializing "%s", from "%s"', __filename, module.parent.id); this.use(utils.cwd()); - this.use(utils.vfs()); this.use(utils.pipeline()); + //...
only add `base-fs` if src doesn't exist
diff --git a/rpc/server.go b/rpc/server.go index <HASH>..<HASH> 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -145,7 +145,7 @@ func (s *Server) serveRequest(ctx context.Context, codec ServerCodec, singleShot defer cancel() // if the codec supports notification include a notifier that callbacks can use - // to...
rpc: fix a comment typo (#<I>)
diff --git a/tests/test4.py b/tests/test4.py index <HASH>..<HASH> 100644 --- a/tests/test4.py +++ b/tests/test4.py @@ -37,6 +37,7 @@ class TestStrategy(bt.Strategy): btindicators.MovingAverageSimple(self.datas[0], period=30) btindicators.MovingAverageSimple(self.datas[0], period=50) ...
test4.py slightly changed - Added MACD to the current indicators
diff --git a/salt/modules/zpool.py b/salt/modules/zpool.py index <HASH>..<HASH> 100644 --- a/salt/modules/zpool.py +++ b/salt/modules/zpool.py @@ -238,9 +238,9 @@ def create(pool_name, *vdevs, **kwargs): ret[vdev] = '{0} not present on filesystem'.format(vdev) return ret m...
Allow zpool.create on character devices Fixes #<I>
diff --git a/inc/template.php b/inc/template.php index <HASH>..<HASH> 100644 --- a/inc/template.php +++ b/inc/template.php @@ -181,10 +181,10 @@ function hybrid_get_content_template() { $templates = apply_filters( 'hybrid_content_template_hierarchy', $templates ); // Locate the template. - $template = locate_temp...
Bring fix from the <I> branch where the `hybrid_content_template` hook worked. This commit also applies the same fix to `hybrid_embed_template`. See original commit: <URL>
diff --git a/geopy/geocoders/googlev3.py b/geopy/geocoders/googlev3.py index <HASH>..<HASH> 100644 --- a/geopy/geocoders/googlev3.py +++ b/geopy/geocoders/googlev3.py @@ -58,7 +58,7 @@ class GoogleV3(Geocoder): # pylint: disable=R0902 .. versionadded:: 0.98.2 :param string domain: Should be the...
Fix GoogleV3 outdated default domain in docs
diff --git a/ocelot-processor/src/main/java/org/ocelotds/processors/AbstractDataServiceVisitor.java b/ocelot-processor/src/main/java/org/ocelotds/processors/AbstractDataServiceVisitor.java index <HASH>..<HASH> 100644 --- a/ocelot-processor/src/main/java/org/ocelotds/processors/AbstractDataServiceVisitor.java +++ b/ocel...
add locale to toLowerCase
diff --git a/analytical/tests/test_tag_uservoice.py b/analytical/tests/test_tag_uservoice.py index <HASH>..<HASH> 100644 --- a/analytical/tests/test_tag_uservoice.py +++ b/analytical/tests/test_tag_uservoice.py @@ -40,14 +40,7 @@ class UserVoiceTagTestCase(TagTestCase): @override_settings(USERVOICE_WIDGET_KEY=''...
Fix uservoice tests Rewrite test_empty_key in the same way as in the other modules. Delete test_overridden_empty_key, because the Node (In this case, the UserVoiceNode) should not be created if there is no configuration initially.
diff --git a/spyderlib/utils/dochelpers.py b/spyderlib/utils/dochelpers.py index <HASH>..<HASH> 100644 --- a/spyderlib/utils/dochelpers.py +++ b/spyderlib/utils/dochelpers.py @@ -159,7 +159,7 @@ def isdefined(obj, force_import=False, namespace=None): return False import __builtin__ if base not in _...
Object inspector/bugfix (workaround) -- utils.dochelpers.isdefined (force_import=True): do not import module if it's a setup module (may crash the introspection thread)
diff --git a/src/ReadModel/MultilingualJsonLDProjectorTrait.php b/src/ReadModel/MultilingualJsonLDProjectorTrait.php index <HASH>..<HASH> 100644 --- a/src/ReadModel/MultilingualJsonLDProjectorTrait.php +++ b/src/ReadModel/MultilingualJsonLDProjectorTrait.php @@ -16,4 +16,17 @@ trait MultilingualJsonLDProjectorTrait ...
III-<I>: Add method to read mainLanguage from JSON-LD in projectors
diff --git a/decidim-dev/lib/decidim/dev/test/rspec_support/vcr.rb b/decidim-dev/lib/decidim/dev/test/rspec_support/vcr.rb index <HASH>..<HASH> 100644 --- a/decidim-dev/lib/decidim/dev/test/rspec_support/vcr.rb +++ b/decidim-dev/lib/decidim/dev/test/rspec_support/vcr.rb @@ -8,6 +8,10 @@ VCR.configure do |config| con...
Fix name error when no elections (#<I>) * fix: NameError - uninitialized constant Decidim::Elections * Linters
diff --git a/precise/__init__.py b/precise/__init__.py index <HASH>..<HASH> 100644 --- a/precise/__init__.py +++ b/precise/__init__.py @@ -1 +1 @@ -__version__ = '0.2.0' +__version__ = '0.3.0'
Increment version to <I>
diff --git a/acceptancetests/assess_upgrade_series.py b/acceptancetests/assess_upgrade_series.py index <HASH>..<HASH> 100755 --- a/acceptancetests/assess_upgrade_series.py +++ b/acceptancetests/assess_upgrade_series.py @@ -41,15 +41,15 @@ def assess_juju_upgrade_series(client, args): def upgrade_series_prepare(cli...
Modifies upgrade-series acceptance test to accomodate new command order and --yes flag.
diff --git a/dygraph-layout.js b/dygraph-layout.js index <HASH>..<HASH> 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -211,6 +211,10 @@ DygraphLayout.prototype._evaluateLineCharts = function() { // on chrome+linux, they are 6 times more expensive than iterating through the // points and drawing the li...
Bugfix: avoid exception when one series is hidden
diff --git a/system/Validation/Rules.php b/system/Validation/Rules.php index <HASH>..<HASH> 100644 --- a/system/Validation/Rules.php +++ b/system/Validation/Rules.php @@ -304,9 +304,9 @@ class Rules // If the field is present we can safely assume that // the field is here, no matter whether the corresponding /...
Fix required_with rule bug. <I>
diff --git a/lxd/project/limits.go b/lxd/project/limits.go index <HASH>..<HASH> 100644 --- a/lxd/project/limits.go +++ b/lxd/project/limits.go @@ -357,7 +357,12 @@ func getInstanceLimits(instance db.Instance, keys []string) (map[string]int64, e } var aggregateLimitConfigValueParsers = map[string]func(string) (int64...
lxd/project: Don't allow percentage values for limits.memory
diff --git a/source/server.js b/source/server.js index <HASH>..<HASH> 100644 --- a/source/server.js +++ b/source/server.js @@ -338,9 +338,9 @@ app.get('/api/fs/listDirectories', ensureAuthenticated, function(req, res) { }); async.filter(absolutePaths, function(absolutePath, callback) { ...
fix callback arguments for async.filter so directory autocomplete works again this was a breaking change in the async library <I> <URL>
diff --git a/src/Model/CustomPostType/Query.php b/src/Model/CustomPostType/Query.php index <HASH>..<HASH> 100644 --- a/src/Model/CustomPostType/Query.php +++ b/src/Model/CustomPostType/Query.php @@ -136,12 +136,12 @@ class Query $offset = (int)get_query_var('paged', 1); $this->limit($postsPerPage); ...
offset were being confused in between WPs and Stratas
diff --git a/EventListener/TargetWebspaceListener.php b/EventListener/TargetWebspaceListener.php index <HASH>..<HASH> 100644 --- a/EventListener/TargetWebspaceListener.php +++ b/EventListener/TargetWebspaceListener.php @@ -59,7 +59,7 @@ class TargetWebspaceListener $webspaceKey = $this->requestAnalyzer->getWeb...
Fixed PHP warning in TargetWebspaceListene (#<I>)
diff --git a/source/org/jasig/portal/layout/ALFolder.java b/source/org/jasig/portal/layout/ALFolder.java index <HASH>..<HASH> 100644 --- a/source/org/jasig/portal/layout/ALFolder.java +++ b/source/org/jasig/portal/layout/ALFolder.java @@ -78,12 +78,11 @@ public class ALFolder extends ALNode { } - /** - ...
Added missing FOLDER_TYPE constant Updated getNode method to sync with ALNode - it now returns an int. git-svn-id: <URL>
diff --git a/pyemma/coordinates/clustering/kmeans.py b/pyemma/coordinates/clustering/kmeans.py index <HASH>..<HASH> 100644 --- a/pyemma/coordinates/clustering/kmeans.py +++ b/pyemma/coordinates/clustering/kmeans.py @@ -64,7 +64,7 @@ class KmeansClustering(AbstractClustering, ProgressReporter): tolerance : floa...
[kmeans] fix math rendering of cost function (#<I>)
diff --git a/src/L.Realtime.js b/src/L.Realtime.js index <HASH>..<HASH> 100644 --- a/src/L.Realtime.js +++ b/src/L.Realtime.js @@ -30,7 +30,7 @@ L.Realtime = L.GeoJSON.extend({ this._src = src; } else { this._src = L.bind(function(responseHandler, errorHandler) { - if (...
In "initialize" a more clean _url if condition. change typeof this._url !== 'undefined' to this._url !== undefined within "initialize".
diff --git a/lntest/itest/lnd_test.go b/lntest/itest/lnd_test.go index <HASH>..<HASH> 100644 --- a/lntest/itest/lnd_test.go +++ b/lntest/itest/lnd_test.go @@ -13405,7 +13405,11 @@ func testChanRestoreScenario(t *harnessTest, net *lntest.NetworkHarness, if err != nil { t.Fatalf("unable to create new node: %v", err)...
itest: Shutdown final Dave node in testChanRestore This changes the defer function in the test for channel backups to correctly close over the 'dave' variable. Without this closure, the shutdownAndAssert call would attempt to shutdown the original (non-restored) dave instead of the most recently created (restored) da...
diff --git a/pabot/pabot.py b/pabot/pabot.py index <HASH>..<HASH> 100755 --- a/pabot/pabot.py +++ b/pabot/pabot.py @@ -1036,7 +1036,7 @@ def store_suite_names(hashes, suite_names): # type: (Hashes, List[ExecutionItem] assert(all(isinstance(s, ExecutionItem) for s in suite_names)) suite_lines = [s.line() for s...
ensure .pabotsuitenames utf-8 encoding
diff --git a/code/LeftAndMain.php b/code/LeftAndMain.php index <HASH>..<HASH> 100644 --- a/code/LeftAndMain.php +++ b/code/LeftAndMain.php @@ -780,7 +780,7 @@ class LeftAndMain extends Controller implements PermissionProvider public function afterHandleRequest() { - if ($this->response->isError()) { ...
FIX Don't override ajax errors or use uninitialised property
diff --git a/ryu/controller/network.py b/ryu/controller/network.py index <HASH>..<HASH> 100644 --- a/ryu/controller/network.py +++ b/ryu/controller/network.py @@ -368,7 +368,12 @@ class Network(app_manager.RyuApp): old_mac_address = self._get_old_mac(network_id, dpid, port_no) self.dpids.remove_port...
network.py: exception in Networks.remove_port() Neutron plugin can call remove_port after network deletion for automatic delete port like router/dhcp port. So ignore NetworkNotFound exception.
diff --git a/asl/interface/webservice/performers/resource.py b/asl/interface/webservice/performers/resource.py index <HASH>..<HASH> 100644 --- a/asl/interface/webservice/performers/resource.py +++ b/asl/interface/webservice/performers/resource.py @@ -24,6 +24,7 @@ def perform_resource(path): resource_task = ge...
Improved logging of the resource request. We can not reserve already reserved surprise. #<I>