diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/les/utils/expiredvalue.go b/les/utils/expiredvalue.go
index <HASH>..<HASH> 100644
--- a/les/utils/expiredvalue.go
+++ b/les/utils/expiredvalue.go
@@ -88,8 +88,9 @@ func (e *ExpiredValue) Add(amount int64, logOffset Fixed64) int64 {
if base >= 0 || uint64(-base) <= e.Base {
// This is a temporary fix t... | les: cosmetic rewrite of the arm<I> float bug workaround (#<I>)
* les: revert arm float bug workaround to check go <I>
* add traces to reproduce outside travis
* simpler workaround |
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -26,11 +26,11 @@ RSpec.configure do |c|
end
c.before(:suite) do
- Delfos.reset!
+ Delfos.reset! if Delfos.respond_to?(:reset!)
end
c.before(:each) do
- Delfo... | only reset in specs when methods is defined: this is needed when running single unit tests |
diff --git a/raven/base.py b/raven/base.py
index <HASH>..<HASH> 100644
--- a/raven/base.py
+++ b/raven/base.py
@@ -231,6 +231,8 @@ class Client(object):
>>> # Specify a scheme to use (http or https)
>>> print client.get_public_dsn('https')
"""
+ if not self.is_enabled():
+ r... | Dont try to return a public_dsn if Raven is disabled |
diff --git a/ella/articles/models.py b/ella/articles/models.py
index <HASH>..<HASH> 100644
--- a/ella/articles/models.py
+++ b/ella/articles/models.py
@@ -121,10 +121,9 @@ class ArticleOptions(admin.ModelAdmin):
fields = (
(_("Article heading"), {'fields': ('title', 'upper_title', 'updated', 'slug')}),
... | Article has editable photo in admin
git-svn-id: <URL> |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ setup(
license='GPLv3',
packages=find_packages(exclude=['doc', 'test']),
include_package_data=True,
- install_requires=['numpy','pyomo','scipy','pandas>=0.19.0','networkx>=1.10'],
+ install_... | setup: Add dependency on PYOMO version <I> |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -67,8 +67,17 @@ function runTests(filter) {
var args = m[2], kind = m[1];
++tests;
if (kind == "+") {
- for (var pos = m.index; /\s/.test(text.charAt(pos - 1)); --pos) {}
- var query = {type: "co... | Add custom @columnNumber suffix for completion hint tests to allow intra-line testing |
diff --git a/core/cb.files.sync/environment.js b/core/cb.files.sync/environment.js
index <HASH>..<HASH> 100644
--- a/core/cb.files.sync/environment.js
+++ b/core/cb.files.sync/environment.js
@@ -55,10 +55,18 @@ Environment.prototype.userExit = function(user) {
// Remove user from environment
this.removeUser(u... | Add exit for user from sync environment |
diff --git a/lib/fluent-query/connection.rb b/lib/fluent-query/connection.rb
index <HASH>..<HASH> 100755
--- a/lib/fluent-query/connection.rb
+++ b/lib/fluent-query/connection.rb
@@ -256,7 +256,12 @@ module FluentQuery
public
def transaction(&block)
self.begin
- block.call
... | bug: transactions must correctly rollback in case of exception |
diff --git a/src/Access/Asset.php b/src/Access/Asset.php
index <HASH>..<HASH> 100644
--- a/src/Access/Asset.php
+++ b/src/Access/Asset.php
@@ -99,6 +99,22 @@ class Asset extends Nested
}
/**
+ * Generates automatic parent_id field value
+ *
+ * @param array $data the data being saved
+ * @return string
... | [fix] Adding missing method (#<I>) |
diff --git a/pyphi/utils.py b/pyphi/utils.py
index <HASH>..<HASH> 100644
--- a/pyphi/utils.py
+++ b/pyphi/utils.py
@@ -543,10 +543,13 @@ def block_cm(cm):
outputs = list(range(cm.shape[1]))
# CM helpers:
- # All nodes that `nodes` connect (output) to
- outputs_of = lambda nodes: np.where(cm[nodes, :].... | Make `block_cm` lambdas conform to PEP8 |
diff --git a/docker/models/containers.py b/docker/models/containers.py
index <HASH>..<HASH> 100644
--- a/docker/models/containers.py
+++ b/docker/models/containers.py
@@ -15,7 +15,12 @@ from .resource import Collection, Model
class Container(Model):
-
+ """ Local representation of a container object. Detailed c... | Document attr caching for Container objects |
diff --git a/test/unit-test.js b/test/unit-test.js
index <HASH>..<HASH> 100644
--- a/test/unit-test.js
+++ b/test/unit-test.js
@@ -766,6 +766,10 @@ title']",
"@import url('https://pro.goalsmashers.com/test.css');",
"@import url(https://pro.goalsmashers.com/test.css);"
],
+ 'of a url starting with ... | test for:fixed import of remote font file starting with // |
diff --git a/Kwc/Basic/ImageParent/Component.php b/Kwc/Basic/ImageParent/Component.php
index <HASH>..<HASH> 100644
--- a/Kwc/Basic/ImageParent/Component.php
+++ b/Kwc/Basic/ImageParent/Component.php
@@ -36,8 +36,11 @@ class Kwc_Basic_ImageParent_Component extends Kwc_Abstract
);
}
$ret['b... | Fix ImageParent, add missing style
style moved from tpl to getTemplateVars in Image component, also do that in ImageParent |
diff --git a/spec/integration/request_spec.rb b/spec/integration/request_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/request_spec.rb
+++ b/spec/integration/request_spec.rb
@@ -4,8 +4,8 @@ describe "Integration" do
subject(:client) {
client = Savon.client(service_endpoint)
- client.http.open_... | lowered request spec timeouts |
diff --git a/lib/slack-ruby-bot-server/app.rb b/lib/slack-ruby-bot-server/app.rb
index <HASH>..<HASH> 100644
--- a/lib/slack-ruby-bot-server/app.rb
+++ b/lib/slack-ruby-bot-server/app.rb
@@ -4,7 +4,6 @@ module SlackRubyBotServer
check_database!
init_database!
mark_teams_active!
- update_team_n... | Removed legacy migration that updated team name and ID. |
diff --git a/Clipper/joplin-webclipper/content_scripts/index.js b/Clipper/joplin-webclipper/content_scripts/index.js
index <HASH>..<HASH> 100644
--- a/Clipper/joplin-webclipper/content_scripts/index.js
+++ b/Clipper/joplin-webclipper/content_scripts/index.js
@@ -134,11 +134,17 @@
const src = absoluteUrl(imageSrc(... | Clipper: Fixes #<I>: Some pages could not be clipped in Firefox due to an issue with dynamic images |
diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -228,7 +228,7 @@ module.exports = function(grunt) {
grunt.task.loadTasks('tasks');
grunt.registerTask('bench', ['metrics']);
- grunt.registerTask('sauce', process.env.SAUCE_USERNAME ? ['tests', 'connec... | chore: disable sauce-labs
Related to #<I> |
diff --git a/pycbc/filter/zpk.py b/pycbc/filter/zpk.py
index <HASH>..<HASH> 100644
--- a/pycbc/filter/zpk.py
+++ b/pycbc/filter/zpk.py
@@ -70,7 +70,7 @@ def filter_zpk(timeseries, z, p, k):
Examples
--------
- To apply a 5 zeroes at 1Hz, 5 poles at 1Hz, and a gain of 1e-10 filter
+ To apply a 5 zeroes... | Fix typo in zpk_filter docstring. |
diff --git a/src/Meta.php b/src/Meta.php
index <HASH>..<HASH> 100644
--- a/src/Meta.php
+++ b/src/Meta.php
@@ -41,7 +41,18 @@ class Meta
return $this->allFields;
}
-
+
+ /**
+ * Get a list of fields for this class
+ *
+ * The field list is a hash of 2-tuples keyed by property name.
+ * The first 2-tuple ... | tweaked lcfirst primary call |
diff --git a/lib/restclient.rb b/lib/restclient.rb
index <HASH>..<HASH> 100644
--- a/lib/restclient.rb
+++ b/lib/restclient.rb
@@ -166,6 +166,7 @@ module RestClient
# Add a Proc to be called before each request in executed.
# The proc parameters will be the http request and the request params.
def self.add_bef... | Validate that proc passed to add_before_exec...
Previously, you could call RestClient.add_before_execution_proc() with
no arguments or block, and it would add `nil` to the list of procs. This
would cause a nil NoMethodError down the line. Instead, immediately
raise an ArgumentError. |
diff --git a/lib/deferrable_gratification/combinators.rb b/lib/deferrable_gratification/combinators.rb
index <HASH>..<HASH> 100644
--- a/lib/deferrable_gratification/combinators.rb
+++ b/lib/deferrable_gratification/combinators.rb
@@ -182,11 +182,11 @@ module DeferrableGratification
# returns falsy, and subsequent... | Rename #guard argument to 'reason' for clarity |
diff --git a/vyper/parser/context.py b/vyper/parser/context.py
index <HASH>..<HASH> 100644
--- a/vyper/parser/context.py
+++ b/vyper/parser/context.py
@@ -42,7 +42,7 @@ class Context:
# Global variables, in the form (name, storage location, type)
self.globals = global_ctx._globals
# ABI objec... | fix 'self' keyerror when attempting to assign a function to a constant |
diff --git a/src/vendor/erdiko/core/Response.php b/src/vendor/erdiko/core/Response.php
index <HASH>..<HASH> 100755
--- a/src/vendor/erdiko/core/Response.php
+++ b/src/vendor/erdiko/core/Response.php
@@ -67,7 +67,8 @@ class Response
*/
public function getThemeName()
{
- return $this->_themeName;
+... | Updated response class and theme class. |
diff --git a/keanu-python/keanu/plots/traceplot.py b/keanu-python/keanu/plots/traceplot.py
index <HASH>..<HASH> 100644
--- a/keanu-python/keanu/plots/traceplot.py
+++ b/keanu-python/keanu/plots/traceplot.py
@@ -1,7 +1,7 @@
try:
import matplotlib.pyplot as plt
from matplotlib.ticker import MaxNLocator
-except... | Apply gradlew formatApply. |
diff --git a/app/controllers/api/DashboardsApiController.java b/app/controllers/api/DashboardsApiController.java
index <HASH>..<HASH> 100644
--- a/app/controllers/api/DashboardsApiController.java
+++ b/app/controllers/api/DashboardsApiController.java
@@ -136,7 +136,7 @@ public class DashboardsApiController extends Auth... | Possible fix for issue #<I>
- added additional check to ensure sampling of data only applies to search result chart widgets |
diff --git a/core/src/main/java/io/undertow/server/session/InMemorySessionManager.java b/core/src/main/java/io/undertow/server/session/InMemorySessionManager.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/server/session/InMemorySessionManager.java
+++ b/core/src/main/java/io/undertow/server/sessi... | Guard against session ID conflicts
The chances of this happening should be quite small, but add an explicit check anyway |
diff --git a/Pragma/DB/DB.php b/Pragma/DB/DB.php
index <HASH>..<HASH> 100644
--- a/Pragma/DB/DB.php
+++ b/Pragma/DB/DB.php
@@ -142,4 +142,25 @@ class DB{
return $description;
}
+
+ public static function getPDOParamsFor($tab, &$params){
+ if(is_array($tab)){
+ if(!empty($tab)){
+ $subparams = [];
+ $cou... | DB - helpers to parse params from an array |
diff --git a/gremlin-test/src/test/java/org/apache/tinkerpop/gremlin/process/FeatureCoverageTest.java b/gremlin-test/src/test/java/org/apache/tinkerpop/gremlin/process/FeatureCoverageTest.java
index <HASH>..<HASH> 100644
--- a/gremlin-test/src/test/java/org/apache/tinkerpop/gremlin/process/FeatureCoverageTest.java
+++ ... | TINKERPOP-<I> PageRank tests aren't currently part of the required tests |
diff --git a/pysat/utils/time.py b/pysat/utils/time.py
index <HASH>..<HASH> 100644
--- a/pysat/utils/time.py
+++ b/pysat/utils/time.py
@@ -12,6 +12,7 @@ import numpy as np
import pandas as pds
import re
+
def getyrdoy(date):
"""Return a tuple of year, day of year for a supplied datetime object. | STY: added missing whitespace
Added an extra line before the first routine. |
diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
index <HASH>..<HASH> 100644
--- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
+++ b/smack-tcp/src/main/java/org/jivesoftware/sm... | Remove not thrown NotConnectedException in XMPPTCPConnection |
diff --git a/biodata-models/src/main/java/org/opencb/biodata/models/core/Region.java b/biodata-models/src/main/java/org/opencb/biodata/models/core/Region.java
index <HASH>..<HASH> 100644
--- a/biodata-models/src/main/java/org/opencb/biodata/models/core/Region.java
+++ b/biodata-models/src/main/java/org/opencb/biodata/m... | biodata: Minor change in toString method of Region |
diff --git a/pymzn/_mzn/_solvers.py b/pymzn/_mzn/_solvers.py
index <HASH>..<HASH> 100644
--- a/pymzn/_mzn/_solvers.py
+++ b/pymzn/_mzn/_solvers.py
@@ -193,7 +193,7 @@ class Gecode(Solver):
args.append(parallel)
if timeout > 0:
args.append('-time')
- args.append(int(timeout ... | solver: fix bug with timeout cast to str |
diff --git a/distutils/tests/test_install.py b/distutils/tests/test_install.py
index <HASH>..<HASH> 100644
--- a/distutils/tests/test_install.py
+++ b/distutils/tests/test_install.py
@@ -19,6 +19,8 @@ from distutils.extension import Extension
from distutils.tests import support
from test import support as test_suppor... | Mark test as xfail. Ref #<I>. |
diff --git a/bot.js b/bot.js
index <HASH>..<HASH> 100644
--- a/bot.js
+++ b/bot.js
@@ -43,7 +43,7 @@ twit.stream('statuses/sample', function(stream) {
var isTwss = classify.knn.isTwss({
"promt": tweet.text,
"trainingData": trainingData,
- "numNeighbours": 10
+ "numNeighbours": 2
... | Maybe improved the k-NN slightly |
diff --git a/lxd/storage/load.go b/lxd/storage/load.go
index <HASH>..<HASH> 100644
--- a/lxd/storage/load.go
+++ b/lxd/storage/load.go
@@ -32,7 +32,7 @@ func volIDFuncMake(state *state.State, poolID int64) func(volType drivers.Volume
volID, _, err := state.Cluster.StoragePoolNodeVolumeGetTypeByProject("default", vol... | lxd/storage/load: Improves getVolID error when volume not found |
diff --git a/tests/test_hooks.py b/tests/test_hooks.py
index <HASH>..<HASH> 100755
--- a/tests/test_hooks.py
+++ b/tests/test_hooks.py
@@ -155,7 +155,9 @@ class TestExternalHooks(object):
assert 'tests' not in os.getcwd()
def test_run_hook(self):
- """Execute hook from specified template in speci... | Fix pep8 in test_run_hook |
diff --git a/spyderlib/spyder.py b/spyderlib/spyder.py
index <HASH>..<HASH> 100644
--- a/spyderlib/spyder.py
+++ b/spyderlib/spyder.py
@@ -1246,6 +1246,8 @@ def initialize():
sys.exit = fake_sys_exit
# Translation
+ qt_translator = None
+ app_translator = None
if CONF.get('main', 'transl... | Fixed: error when running Spyder with [main] Translate = False |
diff --git a/modules/__tests__/URLUtils-test.js b/modules/__tests__/URLUtils-test.js
index <HASH>..<HASH> 100644
--- a/modules/__tests__/URLUtils-test.js
+++ b/modules/__tests__/URLUtils-test.js
@@ -260,6 +260,12 @@ describe('formatPattern', function () {
expect(formatPattern(pattern, { id: 'alt.black.helicopt... | [fixed] URI escape path components with special chars
Fixes #<I> |
diff --git a/lib/expressapp.js b/lib/expressapp.js
index <HASH>..<HASH> 100644
--- a/lib/expressapp.js
+++ b/lib/expressapp.js
@@ -369,6 +369,17 @@ ExpressApp.prototype.start = function(opts, cb) {
});
});
+ router.post('/v1/txproposals/:id/send/', function(req, res) {
+ getServerWithAuth(req, res, functi... | add express endpoint for sending tx |
diff --git a/src/assertions/prop.js b/src/assertions/prop.js
index <HASH>..<HASH> 100644
--- a/src/assertions/prop.js
+++ b/src/assertions/prop.js
@@ -3,21 +3,21 @@ import should from 'should';
const Assertion = should.Assertion;
-Assertion.add('prop', function(expectedKey, expectedValue){
+Assertion.add('prop', f... | No args needed for undefined() assert
Errors thrown because no args needed to be passed into the undefined() assert.
Type checking has recently been added to should.js using TypeScript. |
diff --git a/angr/engines/successors.py b/angr/engines/successors.py
index <HASH>..<HASH> 100644
--- a/angr/engines/successors.py
+++ b/angr/engines/successors.py
@@ -140,10 +140,9 @@ class SimSuccessors(object):
# trigger inspect breakpoints here since this statement technically shows up in the IRSB as the "n... | Change the less-fortunate-among-us check to not trigger breakpoints, also fix narrative voice in comments |
diff --git a/tests/test_models.py b/tests/test_models.py
index <HASH>..<HASH> 100644
--- a/tests/test_models.py
+++ b/tests/test_models.py
@@ -11,7 +11,7 @@ def test_simple_source():
# make a new source without failing
ss = models.SimpleSource()
ss.ra = np.float32(12)
- ss.sanitise()
+ ss._sanitise... | refactor sanitise -> _sanitise |
diff --git a/app/models/alchemy/page.rb b/app/models/alchemy/page.rb
index <HASH>..<HASH> 100644
--- a/app/models/alchemy/page.rb
+++ b/app/models/alchemy/page.rb
@@ -467,19 +467,14 @@ module Alchemy
definition["redirects_to_external"]
end
+ # Returns the first published child
def first_public_chi... | Refactors two page methods with scopes. |
diff --git a/examples/hybrid_simple/tests.js b/examples/hybrid_simple/tests.js
index <HASH>..<HASH> 100644
--- a/examples/hybrid_simple/tests.js
+++ b/examples/hybrid_simple/tests.js
@@ -13,7 +13,7 @@ describe('hello', function(){
});
it('should say hello to person', function(){
- expect(hello('Bob')... | Added a semicolon; |
diff --git a/dddp/server/views.py b/dddp/server/views.py
index <HASH>..<HASH> 100644
--- a/dddp/server/views.py
+++ b/dddp/server/views.py
@@ -187,6 +187,8 @@ class MeteorView(View):
def get(self, request, path):
"""Return HTML (or other related content) for Meteor."""
+ if path[:1] != '/':
+ ... | Normalise paths in dddp.server.views before comparison. |
diff --git a/EventListener/SoftDeleteListener.php b/EventListener/SoftDeleteListener.php
index <HASH>..<HASH> 100644
--- a/EventListener/SoftDeleteListener.php
+++ b/EventListener/SoftDeleteListener.php
@@ -86,9 +86,11 @@ class SoftDeleteListener
}
elseif($manyToMany) {... | renamed variables and added comment |
diff --git a/lib/rfd.rb b/lib/rfd.rb
index <HASH>..<HASH> 100644
--- a/lib/rfd.rb
+++ b/lib/rfd.rb
@@ -440,11 +440,11 @@ module Rfd
def ask(prompt = '(y/n)')
command_line.set_prompt prompt
command_line.wrefresh
- while (c = Curses.getch.chr)
- next unless %(y Y n N).include? c
+ whil... | chring a getch explodes when the getch was out of char range |
diff --git a/spec/flipper/instrumentation/log_subscriber_spec.rb b/spec/flipper/instrumentation/log_subscriber_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/flipper/instrumentation/log_subscriber_spec.rb
+++ b/spec/flipper/instrumentation/log_subscriber_spec.rb
@@ -81,7 +81,6 @@ describe Flipper::Instrumentation::LogS... | Kill a puts with :fire: |
diff --git a/monasca_common/kafka/producer.py b/monasca_common/kafka/producer.py
index <HASH>..<HASH> 100644
--- a/monasca_common/kafka/producer.py
+++ b/monasca_common/kafka/producer.py
@@ -16,6 +16,7 @@
import logging
import time
+from oslo_utils import encodeutils
from six import PY3
import monasca_common.ka... | Ensures that messages pass to kafka client are bytes string
Story: <I>
Task: <I>
Change-Id: I3ae<I>fbbe<I>bf<I>d<I>c<I>dda<I>d<I> |
diff --git a/lib/rolify/resource.rb b/lib/rolify/resource.rb
index <HASH>..<HASH> 100644
--- a/lib/rolify/resource.rb
+++ b/lib/rolify/resource.rb
@@ -8,11 +8,16 @@ module Rolify
def find_roles(role_name = nil, user = nil)
roles = user && (user != :any) ? user.roles : self.role_class
roles = ro... | fixed compatibility issue with Squeel gem when using symbols as role name
closes #<I>
closes #<I> |
diff --git a/generators/entity-client/index.js b/generators/entity-client/index.js
index <HASH>..<HASH> 100644
--- a/generators/entity-client/index.js
+++ b/generators/entity-client/index.js
@@ -24,7 +24,7 @@ const { entityClientI18nFiles } = require('../entity-i18n/files');
const utils = require('../utils');
const B... | Re-enable many-to-many workaround for vue. |
diff --git a/src/components/MultiSelect/MultiSelect.js b/src/components/MultiSelect/MultiSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/MultiSelect/MultiSelect.js
+++ b/src/components/MultiSelect/MultiSelect.js
@@ -12,6 +12,7 @@ import { defaultItemToString } from './tools/itemToString';
import { defaultSo... | fix(MultiSelect): disabled multiSelect being able to clear its select… (#<I>)
* fix(MultiSelect): disabled multiSelect being able to clear its selected items
* Update src/components/MultiSelect/MultiSelect.js
clearSection returns noop so that when clicked and disabled no function is ran |
diff --git a/ftpretty.py b/ftpretty.py
index <HASH>..<HASH> 100644
--- a/ftpretty.py
+++ b/ftpretty.py
@@ -59,7 +59,7 @@ class ftpretty(object):
a file: opened for writing
None: contents are returned
"""
- if isinstance(local, file):
+ if isinstance(local, io.IOB... | PY3: use io.IOBase instead of file |
diff --git a/lib/model/adapters/mongo.js b/lib/model/adapters/mongo.js
index <HASH>..<HASH> 100644
--- a/lib/model/adapters/mongo.js
+++ b/lib/model/adapters/mongo.js
@@ -98,7 +98,7 @@ var Mongo = function (config) {
opts = {};
}
query = transformQuery(query);
- this.collection.find(query)
+... | feilds can now be included and excluded from queries |
diff --git a/generators/generator-constants.js b/generators/generator-constants.js
index <HASH>..<HASH> 100644
--- a/generators/generator-constants.js
+++ b/generators/generator-constants.js
@@ -61,7 +61,7 @@ const DOCKER_MONGODB = 'mongo:4.4.1';
const DOCKER_COUCHBASE = 'couchbase:6.6.0';
const DOCKER_CASSANDRA = 'c... | Update neo4j docker image version to <I> |
diff --git a/src/Factory/Mail/ConfirmationFactory.php b/src/Factory/Mail/ConfirmationFactory.php
index <HASH>..<HASH> 100644
--- a/src/Factory/Mail/ConfirmationFactory.php
+++ b/src/Factory/Mail/ConfirmationFactory.php
@@ -23,7 +23,7 @@ use Laminas\ServiceManager\Factory\FactoryInterface;
*/
class ConfirmationFactor... | fix(Applications): Confirmation mail factory is incompatible with Factory Interface. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,7 @@ except (IOError, ImportError, RuntimeError):
package = 'tapioca'
requirements = [
- 'requests>=2.6,<2.8',
+ 'requests>=2.6',
'arrow>=0.6.0,<0.7',
'six>=1',
] | Set requests<I> as minimum dependency on setup.py |
diff --git a/devices.js b/devices.js
index <HASH>..<HASH> 100755
--- a/devices.js
+++ b/devices.js
@@ -10267,6 +10267,20 @@ const devices = [
await configureReporting.brightness(endpoint);
},
},
+ {
+ zigbeeModel: ['BDP3001'],
+ model: '81855',
+ vendor: 'AduroSmart',
... | Support <I> (#<I>)
Added Adurosmart Eria smart plug (dimmer) |
diff --git a/Web/Robot.php b/Web/Robot.php
index <HASH>..<HASH> 100644
--- a/Web/Robot.php
+++ b/Web/Robot.php
@@ -39,7 +39,7 @@ class sb_Web_Robot{
private $cookies = '';
/**
- * Additional headers converted from an array in add_additional_headers
+ * Additional headers converted from an array in set_addition... | add_additional_headers() now called set_additional_headers as it is in the phpdocs |
diff --git a/pyinfra/api/facts.py b/pyinfra/api/facts.py
index <HASH>..<HASH> 100644
--- a/pyinfra/api/facts.py
+++ b/pyinfra/api/facts.py
@@ -155,6 +155,9 @@ def get_facts(
fact = get_fact_class(name_or_cls)()
name = name_or_cls
+ if isinstance(fact, ShortFactBase):
+ return get_short_fac... | Restore/fix short fact functionality. |
diff --git a/lancet/issue_tracker.py b/lancet/issue_tracker.py
index <HASH>..<HASH> 100644
--- a/lancet/issue_tracker.py
+++ b/lancet/issue_tracker.py
@@ -68,11 +68,18 @@ class GitlabTracker(Tracker):
project = self.api.projects.get(project_id, lazy=True)
group = self.api.groups.get(self.group_id, laz... | Restore compatibility with python < <I> |
diff --git a/test_isort.py b/test_isort.py
index <HASH>..<HASH> 100644
--- a/test_isort.py
+++ b/test_isort.py
@@ -673,3 +673,6 @@ def test_settings_combine_instead_of_overwrite():
"""Test to ensure settings combine logically, instead of fully overwriting."""
assert set(SortImports(known_standard_library=['no... | Add test to ensure full configurability is still present using 'not_' settings, since settings are no longer fully replaced each time |
diff --git a/src/Stagehand/TestRunner/Core/Plugin/PluginRepository.php b/src/Stagehand/TestRunner/Core/Plugin/PluginRepository.php
index <HASH>..<HASH> 100644
--- a/src/Stagehand/TestRunner/Core/Plugin/PluginRepository.php
+++ b/src/Stagehand/TestRunner/Core/Plugin/PluginRepository.php
@@ -86,7 +86,9 @@ class PluginRep... | Added checking whether the target class is an instance of the IPlugin interface. |
diff --git a/pywal/__main__.py b/pywal/__main__.py
index <HASH>..<HASH> 100644
--- a/pywal/__main__.py
+++ b/pywal/__main__.py
@@ -69,7 +69,7 @@ def get_args(args):
help="Print \"wal\" version.")
arg.add_argument("-e", action="store_true",
- help="Skip Reloading Environm... | Keep line length under <I>c |
diff --git a/tests/mongodb_settings.py b/tests/mongodb_settings.py
index <HASH>..<HASH> 100644
--- a/tests/mongodb_settings.py
+++ b/tests/mongodb_settings.py
@@ -11,7 +11,7 @@ DATABASES['mongo'] = {
}
}
-SOUTH_DATABASE_ADAPTERS = {'mongo': 'django_mongodb_engine.south'}
+SOUTH_DATABASE_ADAPTERS = {'mongo': 'djan... | Make sure to load the new mongo south adapter |
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpKernel/Kernel.php
+++ b/src/Symfony/Component/HttpKernel/Kernel.php
@@ -76,12 +76,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface... | bumped Symfony version to <I> |
diff --git a/jquery.cookieBar.js b/jquery.cookieBar.js
index <HASH>..<HASH> 100644
--- a/jquery.cookieBar.js
+++ b/jquery.cookieBar.js
@@ -26,7 +26,7 @@
{
cookiebar.append('<a class="cookiebar-close">Continue</a>');
settings = $.extend( {
- 'closeButtonClass' : '.cookiebar-close'
+ 'closeButton' : '.co... | fixed an issue with custom close buttons not working |
diff --git a/ait/core/tlm.py b/ait/core/tlm.py
index <HASH>..<HASH> 100644
--- a/ait/core/tlm.py
+++ b/ait/core/tlm.py
@@ -743,7 +743,7 @@ class PacketDefinition(json.SlotSerializer, object):
def simulate(self, fill=None):
size = self.nbytes
- values = bytearray(range(size)) if fill is None els... | Updated tlm simulate to use utf-8 encoding |
diff --git a/ccmlib/node.py b/ccmlib/node.py
index <HASH>..<HASH> 100644
--- a/ccmlib/node.py
+++ b/ccmlib/node.py
@@ -1002,6 +1002,7 @@ class Node():
with open(full_options['yaml_file'], 'r') as f:
user_yaml = yaml.load(f)
data = common.yaml_merge(user_yaml, data)
+ ... | Do not add yaml_file to cassandra.yaml |
diff --git a/Controller/ResourceController.php b/Controller/ResourceController.php
index <HASH>..<HASH> 100644
--- a/Controller/ResourceController.php
+++ b/Controller/ResourceController.php
@@ -325,9 +325,15 @@ class ResourceController extends Controller implements ResourceControllerInterfa
return... | Fix delete action redirect (child controller) |
diff --git a/bin/eve.js b/bin/eve.js
index <HASH>..<HASH> 100755
--- a/bin/eve.js
+++ b/bin/eve.js
@@ -7,7 +7,7 @@ var minimist = require("minimist");
var config = require("../build/src/config");
var server = require("../build/src/runtime/server");
-const argv = minimist(process.argv.slice(2));
+const argv = minimi... | Fix port flag not overriding ENV and file argument following a boolean flag |
diff --git a/kernel/src/main/java/com/qspin/qtaste/config/TestBedConfiguration.java b/kernel/src/main/java/com/qspin/qtaste/config/TestBedConfiguration.java
index <HASH>..<HASH> 100644
--- a/kernel/src/main/java/com/qspin/qtaste/config/TestBedConfiguration.java
+++ b/kernel/src/main/java/com/qspin/qtaste/config/TestBed... | [KERNEL] add exception management in the testbed configuration change event emitter |
diff --git a/interp/interp_test.go b/interp/interp_test.go
index <HASH>..<HASH> 100644
--- a/interp/interp_test.go
+++ b/interp/interp_test.go
@@ -870,10 +870,12 @@ var fileCases = []struct {
"echo foo >/dev/null; echo bar",
"bar\n",
},
- {
- ">a; echo foo >>b; wc -c <a >>b; cat b",
- "foo\n0\n",
- },
+ // TO... | interp: disable test that's failing on AppVeyor
To keep CI green.
Updates #<I>. |
diff --git a/tasks/documentjs.js b/tasks/documentjs.js
index <HASH>..<HASH> 100644
--- a/tasks/documentjs.js
+++ b/tasks/documentjs.js
@@ -10,8 +10,13 @@ module.exports = function(grunt) {
*
* @signature `grunt documentjs[:NAME[@PATH]]`
*
- * Calls the configured grunt task. If no name or path is given, al... | the documentjs task can read from documentjs.json |
diff --git a/vault/activity_log_test.go b/vault/activity_log_test.go
index <HASH>..<HASH> 100644
--- a/vault/activity_log_test.go
+++ b/vault/activity_log_test.go
@@ -445,7 +445,9 @@ func TestActivityLog_MultipleFragmentsAndSegments(t *testing.T) {
// enabled check is now inside AddEntityToFragment
a.enabled = true... | Use a lock to address race. (#<I>) |
diff --git a/lib/lolapi.js b/lib/lolapi.js
index <HASH>..<HASH> 100644
--- a/lib/lolapi.js
+++ b/lib/lolapi.js
@@ -149,12 +149,13 @@
historyOptions += '&endIndex=' + options.endIndex;
}
if (options.beginTime) {
- historyOptions += '&beginTime=' + options.beginIn... | fix (MatchHistory) actually use the options too
* right options set for beginTime / endTime
* cleaning url |
diff --git a/src/Admin/AbstractAdmin.php b/src/Admin/AbstractAdmin.php
index <HASH>..<HASH> 100644
--- a/src/Admin/AbstractAdmin.php
+++ b/src/Admin/AbstractAdmin.php
@@ -2914,7 +2914,7 @@ EOT;
$mapper = new ListMapper($this->getListBuilder(), $this->list, $this);
- if (\count($this->getBatchActions... | Add hasRequest to prevent error in dashboard
Add hasRequest to prevent error : `The Request object has not been set` in dashboard |
diff --git a/lib/plugins/retry.js b/lib/plugins/retry.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/retry.js
+++ b/lib/plugins/retry.js
@@ -34,7 +34,9 @@ retry.prototype.argsKey = function(){
var self = this;
// return crypto.createHash('sha1').update(self.args.join('-')).digest('hex');
if(!self.args || sel... | Stringify elements of args array that are of object type to avoid creating an [object object] key in redis |
diff --git a/backbone.js b/backbone.js
index <HASH>..<HASH> 100644
--- a/backbone.js
+++ b/backbone.js
@@ -1079,7 +1079,7 @@
// Helper function to escape a string for HTML rendering.
var escapeHTML = function(string) {
- return string.replace(/&(?!\w+;)/g, '&').replace(/</g, '<').replace(/>/g, '>')... | Fixed escapeHTML function
to skip not only &***;, but also &#***; and &x***; |
diff --git a/server/server.js b/server/server.js
index <HASH>..<HASH> 100644
--- a/server/server.js
+++ b/server/server.js
@@ -35,11 +35,10 @@ if (!process.env.SILENT_MODE) {
}
router.get('/', function (req, res) {
- console.log("'" + req.ip + "'");
- if ( req.ip.match(/^16\./) ) {
+ if ( req.ip.match(/^15\./) )... | Removed log message and fixed IP mapping |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -13,7 +13,7 @@ function IndexRegistry(taker) {
DefaultRegistry.call(this);
- var setTask = taker.set || taker._setTask;
+ var setTask = (taker.set || taker._setTask).bind(taker);
setTask('ng:befor... | fix(undertaker): comply with undertaker new <I> interface bis repetita |
diff --git a/unleash/git.py b/unleash/git.py
index <HASH>..<HASH> 100644
--- a/unleash/git.py
+++ b/unleash/git.py
@@ -5,11 +5,11 @@ from stat import S_ISLNK, S_ISDIR, S_ISREG, S_IFDIR, S_IRWXU, S_IRWXG, S_IRWXO
import time
from dateutil.tz import tzlocal
+from dulwich.errors import NotTreeError
from dulwich.objec... | Do not fail if a file exists that is named similar to a directory that is supposed to exist. |
diff --git a/lib/zold/node/farmers.rb b/lib/zold/node/farmers.rb
index <HASH>..<HASH> 100755
--- a/lib/zold/node/farmers.rb
+++ b/lib/zold/node/farmers.rb
@@ -127,7 +127,7 @@ for #{after.host}:#{after.port} in #{Age.new(start)}: #{after.suffixes}")
stdin, stdout = IO.pipe
Process.fork do
sc... | Issue #<I> - Fix for rubocop |
diff --git a/lib/prey/providers/system/platform/mac/index.js b/lib/prey/providers/system/platform/mac/index.js
index <HASH>..<HASH> 100644
--- a/lib/prey/providers/system/platform/mac/index.js
+++ b/lib/prey/providers/system/platform/mac/index.js
@@ -8,6 +8,8 @@ exports.get_os_version = function(callback){
callback('... | Fix battery info on Mac when no time remaining is given |
diff --git a/coconut/constants.py b/coconut/constants.py
index <HASH>..<HASH> 100644
--- a/coconut/constants.py
+++ b/coconut/constants.py
@@ -543,6 +543,7 @@ all_reqs = {
),
"mypy": (
"mypy[python2]",
+ "types-backports",
),
"watch": (
"watchdog",
@@ -579,6 +580,7 @@ min_ve... | Add types-backports req |
diff --git a/wireprotocol/2_6_support.js b/wireprotocol/2_6_support.js
index <HASH>..<HASH> 100644
--- a/wireprotocol/2_6_support.js
+++ b/wireprotocol/2_6_support.js
@@ -43,7 +43,7 @@ var executeWrite = function(pool, bson, type, opsField, ns, ops, options, callba
}
// Do we have bypassDocumentValidation set, ... | fix(wireprotocol): only send bypassDocumentValidation if true
The bypassDocumentValidation key will only be set if it explicitly
receives a true, otherwise it remains undefined.
Fixes NODE-<I> |
diff --git a/src/constructors/css.js b/src/constructors/css.js
index <HASH>..<HASH> 100644
--- a/src/constructors/css.js
+++ b/src/constructors/css.js
@@ -6,7 +6,7 @@ import NestedSelector from "../models/NestedSelector";
import ValidRuleSetChild from "../models/ValidRuleSetChild";
const declaration = /^\s*([\w-]+)... | allowing # for ids in selectors |
diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php b/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php
+++ b/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php
@@ -6... | DDC-<I> - adding missing type-hint docblock |
diff --git a/src/actions/pause.js b/src/actions/pause.js
index <HASH>..<HASH> 100644
--- a/src/actions/pause.js
+++ b/src/actions/pause.js
@@ -3,6 +3,7 @@
import { selectSource, ensureParserHasSourceText } from "./sources";
import { PROMISE } from "../utils/redux/middleware/promise";
+import { togglePaneCollapse } ... | fix #<I> - expand the right sidebar on pausing at breakpoint |
diff --git a/openquake/commonlib/commands/info.py b/openquake/commonlib/commands/info.py
index <HASH>..<HASH> 100644
--- a/openquake/commonlib/commands/info.py
+++ b/openquake/commonlib/commands/info.py
@@ -50,6 +50,8 @@ def info(name, filtersources=False):
oqparam, sitecol, prefilter=filtersources, in_mem... | Added a reference to the documentation |
diff --git a/src/main/java/info/gehrels/voting/Candidate.java b/src/main/java/info/gehrels/voting/Candidate.java
index <HASH>..<HASH> 100644
--- a/src/main/java/info/gehrels/voting/Candidate.java
+++ b/src/main/java/info/gehrels/voting/Candidate.java
@@ -14,6 +14,10 @@ public class Candidate {
this.name = validat... | Replaced thymeleaf by JSP, Extended the Form binding to hold multiple elections, |
diff --git a/core/codegen/javagen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java b/core/codegen/javagen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java
index <HASH>..<HASH> 100644
--- a/core/codegen/javagen/src/main/java/org/overture/codegen/vdm2java/JavaCodeGen.java
+++ b/core/codegen/javage... | Fix to Java code generator: only transform non-library modules/classes |
diff --git a/src/react/src/routes/SprkAlertDocs/SprkAlertDocs.js b/src/react/src/routes/SprkAlertDocs/SprkAlertDocs.js
index <HASH>..<HASH> 100644
--- a/src/react/src/routes/SprkAlertDocs/SprkAlertDocs.js
+++ b/src/react/src/routes/SprkAlertDocs/SprkAlertDocs.js
@@ -7,7 +7,7 @@ const SprkAlertDocs = () => {
return (... | add additionalClasses prop test to react test page |
diff --git a/tests/cases/access_test.py b/tests/cases/access_test.py
index <HASH>..<HASH> 100644
--- a/tests/cases/access_test.py
+++ b/tests/cases/access_test.py
@@ -24,7 +24,6 @@ from girder.api import access
from girder.constants import AccessType
-
# We deliberately don't have an access decorator
def default... | Really make pep8 happy this time. |
diff --git a/validator/sawtooth_validator/merkle.py b/validator/sawtooth_validator/merkle.py
index <HASH>..<HASH> 100644
--- a/validator/sawtooth_validator/merkle.py
+++ b/validator/sawtooth_validator/merkle.py
@@ -40,7 +40,13 @@ class MerkleDatabase(object):
yield item
def _yield_iter(self, path, h... | Updates for iterating from non-root paths in MerkleDatabase
If the path isn't in the trie, raise StopIteration().
If the path isn't the root node, use _get_by_addr()
to get it. |
diff --git a/keyring/backend.py b/keyring/backend.py
index <HASH>..<HASH> 100644
--- a/keyring/backend.py
+++ b/keyring/backend.py
@@ -12,6 +12,7 @@ import base64
import json
from keyring.util.escape import escape as escape_for_ini
+import keyring.util.escape
from keyring.util import properties
import keyring.uti... | Fixed some issues with the conversion routine from <I> |
diff --git a/glymur/__init__.py b/glymur/__init__.py
index <HASH>..<HASH> 100644
--- a/glymur/__init__.py
+++ b/glymur/__init__.py
@@ -1,5 +1,6 @@
"""glymur - read, write, and interrogate JPEG 2000 files
"""
+import sys
from .jp2k import Jp2k
from .jp2dump import jp2dump | Needed to import sys. |
diff --git a/builder/setup.py b/builder/setup.py
index <HASH>..<HASH> 100644
--- a/builder/setup.py
+++ b/builder/setup.py
@@ -11,7 +11,7 @@ setup(
include_package_data=True,
install_requires=[
'vr.runners>=2.0.4,<3',
- 'PyYAML>=3.10',
+ 'PyYAML==3.10',
],
entry_points={
... | Pin PyYAML version to <I> to be happy with dependencies |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -44,7 +44,7 @@ BIPPath.fromPathArray = function (path) {
BIPPath.fromString = function (text, reqRoot) {
// skip the root
- if (text.startsWith('m/')) {
+ if (/^m\//i.test(text)) {
text = text.slice(2)
} else i... | Do not use startsWith() as it has limited browser support |
diff --git a/exam.js b/exam.js
index <HASH>..<HASH> 100755
--- a/exam.js
+++ b/exam.js
@@ -38,7 +38,7 @@ var exam = module.exports = function (options) {
function readManifest() {
waits++;
fs.readFile(manifestPath, function (err, content) {
- manifest = JSON.parse(content || '{}');
+ manifest = J... | Preventing error when manifest is missing |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.