diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/tile_generator/bosh.py b/tile_generator/bosh.py
index <HASH>..<HASH> 100644
--- a/tile_generator/bosh.py
+++ b/tile_generator/bosh.py
@@ -76,9 +76,8 @@ class BoshRelease:
return self.build_tarball()
def download_tarball(self):
- # TODO - Figure out why some releases aren't pulled from the cache
... | Cleaned up path name to fix caching issue |
diff --git a/lib/podio/areas/conversation.rb b/lib/podio/areas/conversation.rb
index <HASH>..<HASH> 100644
--- a/lib/podio/areas/conversation.rb
+++ b/lib/podio/areas/conversation.rb
@@ -27,10 +27,10 @@ module Podio
response.body
end
- def create_reply(conversation_id, text)
+ def create_reply(c... | Add file_ids support to conversation replies |
diff --git a/asciimatics/widgets.py b/asciimatics/widgets.py
index <HASH>..<HASH> 100644
--- a/asciimatics/widgets.py
+++ b/asciimatics/widgets.py
@@ -167,7 +167,8 @@ class Frame(Effect):
within your Frame.
"""
- # Colour palette for the widgets within the Frame.
+ #: Colour palette for the widgets wi... | Add palette to auto-generated docs |
diff --git a/test/transform.js b/test/transform.js
index <HASH>..<HASH> 100644
--- a/test/transform.js
+++ b/test/transform.js
@@ -53,8 +53,8 @@ describe('Transform stream', function () {
t.on('end', function () {
assert(gotBytes);
- assert(gotBytes);
- assert(gotBytes);
+ assert(gotPassthr... | test: check all the variables in Transform test
Before `gotBytes` was being checked 3 times in a row.
Closes #1. |
diff --git a/lib/helpers/sunomono_helpers.rb b/lib/helpers/sunomono_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/helpers/sunomono_helpers.rb
+++ b/lib/helpers/sunomono_helpers.rb
@@ -149,7 +149,7 @@ end
def framework_avaliable?(framework)
if framework.downcase != 'calabash' && framework.downcase != 'appium'
-... | Adjust on platform validation on command new project |
diff --git a/lib/html-proofer/configuration.rb b/lib/html-proofer/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/html-proofer/configuration.rb
+++ b/lib/html-proofer/configuration.rb
@@ -34,6 +34,7 @@ module HTMLProofer
:headers => {
'User-Agent' => "Mozilla/5.0 (compatible; HTML Proofer/#{HTMLP... | Set Typhoeus connection timeout, fixes #<I>, #<I> |
diff --git a/actionpack/lib/action_controller/test_process.rb b/actionpack/lib/action_controller/test_process.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/test_process.rb
+++ b/actionpack/lib/action_controller/test_process.rb
@@ -110,6 +110,7 @@ module ActionController #:nodoc:
end
... | Reset request_parameters in TestRequest#recycle! to avoid multiple posts clobbering each other [#<I> state:resolved] |
diff --git a/zhaquirks/xiaomi/__init__.py b/zhaquirks/xiaomi/__init__.py
index <HASH>..<HASH> 100644
--- a/zhaquirks/xiaomi/__init__.py
+++ b/zhaquirks/xiaomi/__init__.py
@@ -186,8 +186,9 @@ class BasicCluster(CustomCluster, Basic):
@staticmethod
def _calculate_remaining_battery_percentage(voltage):
... | Fix Xiaomi sensors battery level (#<I>)
* Fix Xiaomi sensors battery level
According to <URL> |
diff --git a/git.go b/git.go
index <HASH>..<HASH> 100644
--- a/git.go
+++ b/git.go
@@ -10,6 +10,7 @@ import (
"bytes"
"unsafe"
"strings"
+ "fmt"
)
const (
@@ -107,6 +108,9 @@ func (e GitError) Error() string{
func LastError() error {
err := C.giterr_last()
+ if err == nil {
+ return &GitError{"No messag... | Catch nil error instances
Unfortunately libgit2 sometimes returns an error without setting an
error message. Provide an alternative message instead of trying to
dereference nil. |
diff --git a/model/QtiJsonItemCompiler.php b/model/QtiJsonItemCompiler.php
index <HASH>..<HASH> 100644
--- a/model/QtiJsonItemCompiler.php
+++ b/model/QtiJsonItemCompiler.php
@@ -88,7 +88,7 @@ class QtiJsonItemCompiler extends QtiItemCompiler
$qtiItem = $this->retrieveAssets($item, $language, $publicDirect... | Removing empty item compilation failure as it is too much greedy. |
diff --git a/airflow/contrib/hooks/gcp_dataflow_hook.py b/airflow/contrib/hooks/gcp_dataflow_hook.py
index <HASH>..<HASH> 100644
--- a/airflow/contrib/hooks/gcp_dataflow_hook.py
+++ b/airflow/contrib/hooks/gcp_dataflow_hook.py
@@ -273,7 +273,7 @@ class DataFlowHook(GoogleCloudBaseHook):
# https://cloud.google.... | [AIRFLOW-<I>] set network, subnetwork when launching dataflow template (#<I>) |
diff --git a/src/lib/_partials/.meta.realm.js b/src/lib/_partials/.meta.realm.js
index <HASH>..<HASH> 100644
--- a/src/lib/_partials/.meta.realm.js
+++ b/src/lib/_partials/.meta.realm.js
@@ -20,7 +20,7 @@ module.exports = exports = (kvp, options) => {
}
return {
- key: kvp.key + ">main",
+ key: kvp.key,
... | Removed 'main' partial dependency |
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index <HASH>..<HASH> 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -1,13 +1,13 @@
from __future__ import unicode_literals
+import json
+import sys
+import time
+
from calendar import timegm
from datetime import datetime
from decimal import Decimal
-... | Fix test_encode_decode_with_ecdsa_sha<I> so that it actually uses the key its trying to use when using a SSH public key as a string argument to decode() |
diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py
index <HASH>..<HASH> 100644
--- a/zipline/finance/performance.py
+++ b/zipline/finance/performance.py
@@ -166,15 +166,23 @@ class PerformanceTracker():
self.result_stream = None
self.last_dict = None
... | fixed bogus initial portfolio value (should be zero). |
diff --git a/optlang/cplex_interface.py b/optlang/cplex_interface.py
index <HASH>..<HASH> 100644
--- a/optlang/cplex_interface.py
+++ b/optlang/cplex_interface.py
@@ -93,7 +93,7 @@ _CPLEX_STATUS_TO_STATUS = {
cplex.Cplex.solution.status.num_best: interface.NUMERIC,
cplex.Cplex.solution.status.optimal: interfa... | fix: treat "optimal_infeasible" as infeasible
“optimal with unscaled infeasibilities” occurs when the scaled problem
is solved within tolerance, but the optimal solution is outside the
unscaled tolerance. This situation is now interpreted as infeasible. |
diff --git a/omgeo/services/base.py b/omgeo/services/base.py
index <HASH>..<HASH> 100644
--- a/omgeo/services/base.py
+++ b/omgeo/services/base.py
@@ -14,7 +14,8 @@ logger = logging.getLogger(__name__)
class UpstreamResponseInfo():
"""
Description of API call result from an upstream provider.
- For cleani... | add repr method to geocoder info class |
diff --git a/packages/angularjs-workorder/lib/workorder-list/workorder-list-controller.js b/packages/angularjs-workorder/lib/workorder-list/workorder-list-controller.js
index <HASH>..<HASH> 100644
--- a/packages/angularjs-workorder/lib/workorder-list/workorder-list-controller.js
+++ b/packages/angularjs-workorder/lib/w... | Filter also by title field in workorders in portal (#<I>) |
diff --git a/mtools/test/test_mlaunch.py b/mtools/test/test_mlaunch.py
index <HASH>..<HASH> 100644
--- a/mtools/test/test_mlaunch.py
+++ b/mtools/test/test_mlaunch.py
@@ -76,7 +76,7 @@ class TestMLaunch(object):
if arg_str.startswith('init') or arg_str.startswith('--'):
# add --port and ... | removed --oplogSize from tests, config servers don't like it. |
diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -1,4 +1,5 @@
var fs = require('fs');
+var jsesc = require('jsesc');
var parse = require('../parser').parse;
@@ -32,7 +33,13 @@ parseTests.forEach(function(re, idx) {
var resuls = parseResult[idx]... | Need to use jsesc in test/index.js as well |
diff --git a/templates/forms/affiliation.php b/templates/forms/affiliation.php
index <HASH>..<HASH> 100644
--- a/templates/forms/affiliation.php
+++ b/templates/forms/affiliation.php
@@ -221,8 +221,8 @@
<?php endif ?>
</div>
... | [affiliation-confirmation] [bug] [fix] Fixed a bug. The label's `for` attribute is expecting an ID not a name. |
diff --git a/airflow/models.py b/airflow/models.py
index <HASH>..<HASH> 100755
--- a/airflow/models.py
+++ b/airflow/models.py
@@ -1700,7 +1700,7 @@ class TaskInstance(Base, LoggingMixin):
class VariableAccessor:
"""
Wrapper around Variable. This way you can get variables in templates... | [AIRFLOW-<I>] Elaborate on slightly ambiguous documentation
Closes #<I> from AetherUnbound/bugfix/var-doc-
reference |
diff --git a/tests/aws/models/elb/model_tests.rb b/tests/aws/models/elb/model_tests.rb
index <HASH>..<HASH> 100644
--- a/tests/aws/models/elb/model_tests.rb
+++ b/tests/aws/models/elb/model_tests.rb
@@ -110,6 +110,8 @@ Shindo.tests('AWS::ELB | models', ['aws', 'elb']) do
end
server = Fog::Compute[:aws].serv... | [aws|elb] wait_for server to be ready? before register |
diff --git a/design/dsl/type.go b/design/dsl/type.go
index <HASH>..<HASH> 100644
--- a/design/dsl/type.go
+++ b/design/dsl/type.go
@@ -61,6 +61,10 @@ func Type(name string, dsl func()) *design.UserTypeDefinition {
// })
// Payload(ArrayOf(Bottle)) // Equivalent to Payload(Bottles)
// })
+//
+// If you are looking... | Added note to refer to CollectionOf, was looking for it.. and it's quite
similar in concept to ArrayOf. |
diff --git a/Security/OAuth/Exception/BadResponseException.php b/Security/OAuth/Exception/BadResponseException.php
index <HASH>..<HASH> 100644
--- a/Security/OAuth/Exception/BadResponseException.php
+++ b/Security/OAuth/Exception/BadResponseException.php
@@ -31,7 +31,7 @@ class BadResponseException extends \LogicExcept... | Enhance bad response exception CS. |
diff --git a/olctools/databasesetup/get_rmlst.py b/olctools/databasesetup/get_rmlst.py
index <HASH>..<HASH> 100644
--- a/olctools/databasesetup/get_rmlst.py
+++ b/olctools/databasesetup/get_rmlst.py
@@ -51,7 +51,10 @@ class Get(object):
# Remove and dashes or 'N's from the sequence data - makeblast... | Added try/except if the sequence data is bytes-encoded |
diff --git a/src/local/local.go b/src/local/local.go
index <HASH>..<HASH> 100644
--- a/src/local/local.go
+++ b/src/local/local.go
@@ -1,11 +1,10 @@
package main
import (
- "shadowsocks"
- "net"
- "bytes"
- "log"
"fmt"
+ "log"
+ "net"
+ "shadowsocks"
)
func handleConnection(conn net.Conn, encryptTable, decryp... | Convert []byte to string directly. |
diff --git a/test/unit/transforms/transformsFactory.test.js b/test/unit/transforms/transformsFactory.test.js
index <HASH>..<HASH> 100644
--- a/test/unit/transforms/transformsFactory.test.js
+++ b/test/unit/transforms/transformsFactory.test.js
@@ -44,7 +44,6 @@ describe('transformsFactory', () => {
test('createTran... | - removed console
:goose: |
diff --git a/Kwc/Form/Component.js b/Kwc/Form/Component.js
index <HASH>..<HASH> 100644
--- a/Kwc/Form/Component.js
+++ b/Kwc/Form/Component.js
@@ -209,7 +209,6 @@ Ext.extend(Kwc.Form.Component, Ext.util.Observable, {
if (!hasErrors) {
// Scroll to top of form
s... | Form: don't fire submitSuccess event twice |
diff --git a/validator/sawtooth_validator/database/lmdb_nolock_database.py b/validator/sawtooth_validator/database/lmdb_nolock_database.py
index <HASH>..<HASH> 100644
--- a/validator/sawtooth_validator/database/lmdb_nolock_database.py
+++ b/validator/sawtooth_validator/database/lmdb_nolock_database.py
@@ -50,6 +50,7 @@... | Disable LMDB read ahead caching for LMDBNoLockDatabase |
diff --git a/lib/how_is/report.rb b/lib/how_is/report.rb
index <HASH>..<HASH> 100644
--- a/lib/how_is/report.rb
+++ b/lib/how_is/report.rb
@@ -4,7 +4,7 @@ require 'date'
require "pathname"
class HowIs
- # Error class
+ # Raised when attempting to export to an unsupported format
class UnsupportedExportFormat < ... | [docs] Improve docblock wording |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ classifiers = ["License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X"] + [
("P... | Tested in python <I> |
diff --git a/LeanMapper/Repository.php b/LeanMapper/Repository.php
index <HASH>..<HASH> 100644
--- a/LeanMapper/Repository.php
+++ b/LeanMapper/Repository.php
@@ -268,12 +268,7 @@ abstract class Repository
return $this->entityClass = $entityClass;
}
}
- $entityClass = $this->mapper->getEntityClass($thi... | Fixed cache-related issue in Repository |
diff --git a/generators/app/index.js b/generators/app/index.js
index <HASH>..<HASH> 100644
--- a/generators/app/index.js
+++ b/generators/app/index.js
@@ -106,7 +106,7 @@ module.exports = generator.extend({
this.template('dummy.txt', 'dummy.txt');
try {
- jhipsterFunc.registerModule('gene... | move hook to post app rather than post entity |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -46,9 +46,16 @@ if os.name == 'nt':
# Hack to overcome a separate bug
def get_command_class(self, command):
- """Ensures self.cmdclass is not a tuple."""
- if type(self.cmdclass) is tuple:
- ... | Another try for Win <I>. |
diff --git a/lib/omni_kassa.rb b/lib/omni_kassa.rb
index <HASH>..<HASH> 100644
--- a/lib/omni_kassa.rb
+++ b/lib/omni_kassa.rb
@@ -3,7 +3,7 @@ require 'active_support/core_ext/string'
module OmniKassa
REQUEST_SETTINGS = :merchant_id, :currency_code, :transaction_reference,
- :customer_language
+ :customer_l... | Added key_version to REQUEST_SETTINGS |
diff --git a/eslint/babel-eslint-parser/acorn-to-esprima.js b/eslint/babel-eslint-parser/acorn-to-esprima.js
index <HASH>..<HASH> 100644
--- a/eslint/babel-eslint-parser/acorn-to-esprima.js
+++ b/eslint/babel-eslint-parser/acorn-to-esprima.js
@@ -30,11 +30,6 @@ var astTransformVisitor = {
delete node.argument;
... | turn class declarations into variable declarations - fixes babel/babel-eslint#8 |
diff --git a/lib/iniparse/line_types.rb b/lib/iniparse/line_types.rb
index <HASH>..<HASH> 100644
--- a/lib/iniparse/line_types.rb
+++ b/lib/iniparse/line_types.rb
@@ -8,8 +8,7 @@ module IniParse
:comment => nil,
:comment_sep => nil,
:comment_offset => 0,
- :indent => ... | Let's not pass around a :line option for now. |
diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -296,7 +296,7 @@ function DiscordClient(options) {
}
});
} else {
- console.log("Error POSTing login information: " + res.statusMessage + "\n" + body);
+ console.log("Error POSTing login in... | Doesn't seem to give a statusMessage. |
diff --git a/pyecore/ecore.py b/pyecore/ecore.py
index <HASH>..<HASH> 100644
--- a/pyecore/ecore.py
+++ b/pyecore/ecore.py
@@ -61,12 +61,13 @@ class EcoreUtils(object):
hasattr(obj, '_staticEClass') and obj._staticEClass
elif isinstance(_type, EEnum):
return obj in _type
-... | Change 'EcoreUtils.isinstance' to deal with Python class
This modification avoids the PyEcore 'isinstance' algorithm to deal
with 'eAllSuperTypes()' which could be time consumming. Instead, it
uses the 'python_class' which is produced and add to each 'EClass'
instance. |
diff --git a/spec/acceptance/real_time_updates_spec.rb b/spec/acceptance/real_time_updates_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/acceptance/real_time_updates_spec.rb
+++ b/spec/acceptance/real_time_updates_spec.rb
@@ -5,7 +5,7 @@ describe 'Updates to records in real-time indices', :live => true do
product... | Disable null character check for PostgreSQL.
Seems pg updates don't allow such strings in the database. Fine by me. |
diff --git a/lib/lago/__init__.py b/lib/lago/__init__.py
index <HASH>..<HASH> 100644
--- a/lib/lago/__init__.py
+++ b/lib/lago/__init__.py
@@ -504,11 +504,18 @@ class Prefix(object):
task_message = 'Create empty disk image'
elif spec['type'] == 'file':
url = spec.get('url'... | Support storing of disk url's into given path
Allow when given both url and path to store the disk in given path
Both url and uri are part of the disk json spec
Change-Id: I5ec<I>d4ab<I>d1ce<I>bf<I>aa<I>b<I>c<I>aee |
diff --git a/modules/core/src/life_cycle/life_cycle.js b/modules/core/src/life_cycle/life_cycle.js
index <HASH>..<HASH> 100644
--- a/modules/core/src/life_cycle/life_cycle.js
+++ b/modules/core/src/life_cycle/life_cycle.js
@@ -1,13 +1,22 @@
import {FIELD} from 'facade/lang';
import {ChangeDetector} from 'change_detec... | feat(LifeCycle): change LifeCycle to be able register it with a zone |
diff --git a/src/ODM/MongoDB/Types/CurrencyType.php b/src/ODM/MongoDB/Types/CurrencyType.php
index <HASH>..<HASH> 100644
--- a/src/ODM/MongoDB/Types/CurrencyType.php
+++ b/src/ODM/MongoDB/Types/CurrencyType.php
@@ -2,10 +2,10 @@
namespace ZFBrasil\DoctrineMoneyModule\ODM\MongoDB\Types;
-use Doctrine\ODM\MongoDB\Ty... | Bug fixation of ODM\MongoDB\Types\CurrencyType
* shouldn't use stringtype |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -50,6 +50,7 @@ setup(
long_description = long_description,
keywords = 'framework templating template html xhtml python html5',
+ python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers = [
... | Add python_requires to help pip |
diff --git a/lib/traject/horizon_reader.rb b/lib/traject/horizon_reader.rb
index <HASH>..<HASH> 100644
--- a/lib/traject/horizon_reader.rb
+++ b/lib/traject/horizon_reader.rb
@@ -356,6 +356,7 @@ module Traject
rescue Exception => e
logger.fatal "HorizonReader, unexpected exception at bib id:#{current_bib_... | bah, def do need to re-raise caught exception |
diff --git a/container/lxc/lxc.go b/container/lxc/lxc.go
index <HASH>..<HASH> 100644
--- a/container/lxc/lxc.go
+++ b/container/lxc/lxc.go
@@ -148,14 +148,13 @@ lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up
-lxc.mount.entry=/var/log/juju %s none defaults,bind 0 0
+lxc.mount.entry=/var/log... | Have the config file use the root relative path for the mount. |
diff --git a/src/ReadModel/Index/Projector.php b/src/ReadModel/Index/Projector.php
index <HASH>..<HASH> 100644
--- a/src/ReadModel/Index/Projector.php
+++ b/src/ReadModel/Index/Projector.php
@@ -326,8 +326,8 @@ class Projector implements EventListenerInterface
$eventId,
EntityType::EVENT(),
... | III-<I> Title and zip should be set to default empty string instead of null. |
diff --git a/src/cbednarski/Pharcc/Compiler.php b/src/cbednarski/Pharcc/Compiler.php
index <HASH>..<HASH> 100644
--- a/src/cbednarski/Pharcc/Compiler.php
+++ b/src/cbednarski/Pharcc/Compiler.php
@@ -112,7 +112,7 @@ HEREDOC;
} elseif (is_dir($include)) {
$files = array_merge($files, FileUti... | Added backslash to get Exception from the global namespace |
diff --git a/jupyterdrive/gdrive/drive-contents.js b/jupyterdrive/gdrive/drive-contents.js
index <HASH>..<HASH> 100644
--- a/jupyterdrive/gdrive/drive-contents.js
+++ b/jupyterdrive/gdrive/drive-contents.js
@@ -105,7 +105,10 @@ define(function(require) {
};
Contents.prototype.delete = function(path) {
- ... | Adds gapi_utils.gapi_ready guard to Contents.delete
gapi_utils.gapi_ready is a promise that is fullfilled when the Google API has loaded. This promise should be used to guard any calls to gapi_util or drive_util functions, to prevent calls to the Google API before the API has loaded. |
diff --git a/simulation.py b/simulation.py
index <HASH>..<HASH> 100644
--- a/simulation.py
+++ b/simulation.py
@@ -47,6 +47,14 @@ class _DataFrameWrapper(object):
return list(self._frame.columns) + _list_columns_for_table(self.name)
@property
+ def local_columns(self):
+ """
+ Columns i... | when adding rows, need to be able to get only the local columns |
diff --git a/test/run-tests.php b/test/run-tests.php
index <HASH>..<HASH> 100644
--- a/test/run-tests.php
+++ b/test/run-tests.php
@@ -24,7 +24,7 @@
/* $Id$ */
-error_reporting(E_ALL &~E_DEPRECATED);
+error_reporting(E_ALL);
if (!file_exists(dirname(__FILE__) . '/config.local.php')) {
echo "Create config.l... | Removed E_DEPRECATED |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -363,7 +363,7 @@ setup(
# 'ITER': ['*.csv'],
# },
package_data={
- "tofu.tests.tests01_geom.tests03core_data": ["*.py", "*.txt"],
+ "tofu.tests.tests01_geom.tests03_core_data": ["*.py", "*.txt"]... | Corrected typo in package_data that prevented proper .txt data to be included in sdist package from tests<I>_geom/tests<I>_core_data/ |
diff --git a/spring-cloud-contract-verifier/src/main/java/org/springframework/cloud/contract/verifier/messaging/camel/CamelStubMessages.java b/spring-cloud-contract-verifier/src/main/java/org/springframework/cloud/contract/verifier/messaging/camel/CamelStubMessages.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-co... | Added npe guard; fixes gh-<I> |
diff --git a/src/oauth2server/DatabaseInterface.php b/src/oauth2server/DatabaseInterface.php
index <HASH>..<HASH> 100644
--- a/src/oauth2server/DatabaseInterface.php
+++ b/src/oauth2server/DatabaseInterface.php
@@ -6,8 +6,8 @@ interface DatabaseInteface
{
public function validateClient(
$clientId,
- ... | Added NULL default back to $clientSecret and $redirectUri |
diff --git a/MAVProxy/modules/lib/ntrip.py b/MAVProxy/modules/lib/ntrip.py
index <HASH>..<HASH> 100755
--- a/MAVProxy/modules/lib/ntrip.py
+++ b/MAVProxy/modules/lib/ntrip.py
@@ -175,6 +175,10 @@ class NtripClient(object):
self.socket.close()
self.socket = None
return ... | ntrip: cope with zero data return |
diff --git a/lib/server.js b/lib/server.js
index <HASH>..<HASH> 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -20,7 +20,7 @@ function Server(host, port) {
// if host provided, augment the urlObj
if (host) {
- urlObj.host = host;
+ urlObj.hostname = host;
}
// if port provided, augment the urlObj | Small bugfix of setting the server hostname. |
diff --git a/redisson/src/test/java/org/redisson/executor/RedissonScheduledExecutorServiceTest.java b/redisson/src/test/java/org/redisson/executor/RedissonScheduledExecutorServiceTest.java
index <HASH>..<HASH> 100644
--- a/redisson/src/test/java/org/redisson/executor/RedissonScheduledExecutorServiceTest.java
+++ b/redi... | test for cancelTask method added |
diff --git a/spec/scss_lint/linter/private_naming_convention_spec.rb b/spec/scss_lint/linter/private_naming_convention_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/scss_lint/linter/private_naming_convention_spec.rb
+++ b/spec/scss_lint/linter/private_naming_convention_spec.rb
@@ -60,6 +60,20 @@ describe SCSSLint::Lin... | Add test for another edge case in PrivateNamingConvention
I was trying out this new rule in a few more places, and noticed
similarly broken behavior when the file starts with an @import
statement. My previous fix also resolves this, but I think it is good to
cover this with a test anyway. |
diff --git a/lib/AmazonMwsResource.js b/lib/AmazonMwsResource.js
index <HASH>..<HASH> 100644
--- a/lib/AmazonMwsResource.js
+++ b/lib/AmazonMwsResource.js
@@ -151,7 +151,15 @@ AmazonMwsResource.prototype = {
function parseCSVFile(res, responseString, delimiter, callback) {
var data = [];
- ... | added more options for CSV parsing |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -87,6 +87,10 @@ function WebTorrent (opts) {
self.emit('error', err)
self.destroy()
})
+
+ // Ignore warning when there are > 10 torrents in the client
+ self.dht.setMaxListeners(0)
+
self.dht.lis... | Ignore warning when there are > <I> torrents in the client |
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
@@ -402,7 +402,7 @@ abstract class Kernel implements KernelInterface
}
... | [HttpKernel] changed the compiled class cache to non-adaptative (as it is now loaded very early) |
diff --git a/lib/bowline/library.rb b/lib/bowline/library.rb
index <HASH>..<HASH> 100644
--- a/lib/bowline/library.rb
+++ b/lib/bowline/library.rb
@@ -5,9 +5,8 @@ module Bowline
RUBYLIB_URL = "#{PROJECT_URL}/rubylib.zip"
def path
- # TODO - tilda won't work on win32
File.expand_path(
- ... | Gem lib has a nice api for the user's home dir |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -49,23 +49,23 @@ var lowerBound = exports.lowerBound = function (range) {
return k && range[k]
}
-exports.lowerBoundInclusive = function (range) {
+var lowerBoundInclusive = exports.lowerBoundInclusive = function (range)... | _Exclusive interms of _Inclusive |
diff --git a/orangepi/pi4B.py b/orangepi/pi4B.py
index <HASH>..<HASH> 100644
--- a/orangepi/pi4B.py
+++ b/orangepi/pi4B.py
@@ -18,10 +18,10 @@ Usage:
# pin number = (position of letter in alphabet - 1) * 32 + pin number
# So, PD14 will be (4 - 1) * 32 + 14 = 110
-import orangepi.4
+import orangepi.pi4
# Orange P... | Update pi4B.py (#<I>)
correct ref to pi4 |
diff --git a/tornado/concurrent.py b/tornado/concurrent.py
index <HASH>..<HASH> 100644
--- a/tornado/concurrent.py
+++ b/tornado/concurrent.py
@@ -156,6 +156,7 @@ def return_future(f):
return True
exc_info = None
with ExceptionStackContext(handle_error):
+ result = None
... | Ensure the result variable is initialized even when an exception is handled. |
diff --git a/client/js/uploader.js b/client/js/uploader.js
index <HASH>..<HASH> 100644
--- a/client/js/uploader.js
+++ b/client/js/uploader.js
@@ -338,6 +338,7 @@ qq.extend(qq.FineUploader.prototype, {
var item = this.getItemByFileId(id);
this._find(item, 'progressBar').style.width = 0;
... | #<I> - hide "failure" status message after starting retry attempt |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setup(
author_email='nico.schloemer@gmail.com',
requires=['matplotlib (>=1.4.0)', 'numpy'],
description='convert matplotlib figures into TikZ/PGFPlots',
- long_description=convert_to_rst('READM... | setup: always get README.md |
diff --git a/lib/omnibus-ctl.rb b/lib/omnibus-ctl.rb
index <HASH>..<HASH> 100644
--- a/lib/omnibus-ctl.rb
+++ b/lib/omnibus-ctl.rb
@@ -354,6 +354,11 @@ module Omnibus
end
end
+ # If it begins with a '-', it is an option.
+ def is_option?(arg)
+ arg && arg[0] == '-'
+ end
+
def run(args)... | Check if service argument is actually an option |
diff --git a/tests/Pheasant/Tests/MysqlTestCase.php b/tests/Pheasant/Tests/MysqlTestCase.php
index <HASH>..<HASH> 100755
--- a/tests/Pheasant/Tests/MysqlTestCase.php
+++ b/tests/Pheasant/Tests/MysqlTestCase.php
@@ -19,6 +19,11 @@ class MysqlTestCase extends \PHPUnit_Framework_TestCase
;
}
+ public function tear... | Close connection in test cases to avoid running out of connections |
diff --git a/js/bones.js b/js/bones.js
index <HASH>..<HASH> 100644
--- a/js/bones.js
+++ b/js/bones.js
@@ -638,7 +638,7 @@ var bones = {
exports.Td = bones.Td;
exports.Form = bones.Form;
exports.Input = bones.Input;
- exports.TextArea = bones.TextArea;
+ exports.Textarea = bones.Textarea;
exports.Select =... | merged cloud9 version with github version. Fixed bug in export of Textarea. |
diff --git a/lib/json-dry.js b/lib/json-dry.js
index <HASH>..<HASH> 100644
--- a/lib/json-dry.js
+++ b/lib/json-dry.js
@@ -14,7 +14,7 @@ var special_char = '~',
*
* @author Jelle De Loecker <jelle@develry.be>
* @since 0.1.0
- * @version 1.0.0
+ * @version 1.0.1
*
* @param {Object} r... | Fix calculating length of possible replacement path |
diff --git a/aomi/validation.py b/aomi/validation.py
index <HASH>..<HASH> 100644
--- a/aomi/validation.py
+++ b/aomi/validation.py
@@ -1,6 +1,7 @@
"""Some validation helpers for aomi"""
from __future__ import print_function
import os
+import platform
import stat
from aomi.helpers import problems, abspath, is_tagge... | Don't do the file permission check on Windows
When running Python on Windows, most of the file system permission checks
are ignored by the python stat() call. So don't do the fine-grained
permission checks there.
Correct (hopefully) the whitespace issue
More whitespace tinkering |
diff --git a/question/upgrade.php b/question/upgrade.php
index <HASH>..<HASH> 100644
--- a/question/upgrade.php
+++ b/question/upgrade.php
@@ -77,8 +77,9 @@ function question_remove_rqp_qtype_config_string() {
*/
function question_random_check($result){
global $CFG;
- if ($CFG->version >= 2007081000){
- ... | MDL-<I> custom check was causing error on installation because dmllib functions are not available yet. |
diff --git a/group/classes/output/user_groups_editable.php b/group/classes/output/user_groups_editable.php
index <HASH>..<HASH> 100644
--- a/group/classes/output/user_groups_editable.php
+++ b/group/classes/output/user_groups_editable.php
@@ -75,7 +75,7 @@ class user_groups_editable extends \core\output\inplace_editabl... | MDL-<I> core_group: add support for multi-lang to groups editable
Part of MDL-<I>. |
diff --git a/packages/graphics/src/Graphics.js b/packages/graphics/src/Graphics.js
index <HASH>..<HASH> 100644
--- a/packages/graphics/src/Graphics.js
+++ b/packages/graphics/src/Graphics.js
@@ -527,7 +527,18 @@ export default class Graphics extends Container
if (points)
{
- if (points[po... | Fixes arc duplicating points (#<I>) |
diff --git a/config/common.php b/config/common.php
index <HASH>..<HASH> 100644
--- a/config/common.php
+++ b/config/common.php
@@ -1,7 +1,9 @@
<?php
return [
+ \Psr\SimpleCache\CacheInterface::class => \yii\di\Reference::to('cache'),
+ \yii\cache\CacheInterface::class => \yii\di\Reference::to('cache'),
'... | Added DI config for cache interfaces |
diff --git a/test/async.es6.js b/test/async.es6.js
index <HASH>..<HASH> 100644
--- a/test/async.es6.js
+++ b/test/async.es6.js
@@ -226,6 +226,22 @@ describe("async functions and await expressions", function() {
done();
}).catch(done);
});
+
+ it("should propagate failure when returned", function... | Add a failing test for #<I>. |
diff --git a/src/product-helpers.js b/src/product-helpers.js
index <HASH>..<HASH> 100644
--- a/src/product-helpers.js
+++ b/src/product-helpers.js
@@ -7,7 +7,7 @@ export default {
* Returns the variant of a product corresponding to the options given.
*
* @example
- * const selectedVariant = client.product... | Add correct documentation for variantForOptions from product helpers |
diff --git a/lib/are_you_sure/form_builders/confirm_form_builder.rb b/lib/are_you_sure/form_builders/confirm_form_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/are_you_sure/form_builders/confirm_form_builder.rb
+++ b/lib/are_you_sure/form_builders/confirm_form_builder.rb
@@ -63,7 +63,7 @@ module AreYouSure
end
... | selected is false or nil? |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -15,8 +15,9 @@ setup(
author_email='venthur@debian.org',
url='https://github.com/venthur/python-debianbts',
license='GPL2',
- package_dir = {'': 'src'},
- py_modules = ['debianbts'],
+ package_dir={'': ... | Adding pysimplesoap to install requirements and bumping version. |
diff --git a/src/Baum/Extensions/ModelExtensions.php b/src/Baum/Extensions/ModelExtensions.php
index <HASH>..<HASH> 100644
--- a/src/Baum/Extensions/ModelExtensions.php
+++ b/src/Baum/Extensions/ModelExtensions.php
@@ -9,16 +9,13 @@ trait ModelExtensions {
* @return \Baum\Node
*/
public function reload() {
-... | Modify Model::reload() function behaviour to sync with original attributes when model is not persisted and to always load from the database otherwise. |
diff --git a/restcomm/restcomm.rvd/src/main/webapp/js/app/controllers/designer.js b/restcomm/restcomm.rvd/src/main/webapp/js/app/controllers/designer.js
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.rvd/src/main/webapp/js/app/controllers/designer.js
+++ b/restcomm/restcomm.rvd/src/main/webapp/js/app/controllers/d... | Fixed regression issue observed when saving projects with diagram hidden.
Refers #<I> |
diff --git a/playground/examples/creating.objects.js b/playground/examples/creating.objects.js
index <HASH>..<HASH> 100644
--- a/playground/examples/creating.objects.js
+++ b/playground/examples/creating.objects.js
@@ -73,14 +73,14 @@ syn.note( 0 )
// We can pass our own property values to
// constructors. For examp... | fixing intro tutorial to not change waveform property after init |
diff --git a/mautrix/client/api/modules/media_repository.py b/mautrix/client/api/modules/media_repository.py
index <HASH>..<HASH> 100644
--- a/mautrix/client/api/modules/media_repository.py
+++ b/mautrix/client/api/modules/media_repository.py
@@ -47,7 +47,7 @@ class MediaRepositoryMethods(BaseClientAPI):
Raise... | async media: fix method on /create |
diff --git a/src/DataTables/Backend/CategoriesDataTable.php b/src/DataTables/Backend/CategoriesDataTable.php
index <HASH>..<HASH> 100644
--- a/src/DataTables/Backend/CategoriesDataTable.php
+++ b/src/DataTables/Backend/CategoriesDataTable.php
@@ -4,7 +4,6 @@ declare(strict_types=1);
namespace Cortex\Categorizable\Da... | Use IoC bound model instead of the explicitly hardcoded |
diff --git a/liquibase-core/src/main/java/liquibase/database/core/DerbyDatabase.java b/liquibase-core/src/main/java/liquibase/database/core/DerbyDatabase.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/database/core/DerbyDatabase.java
+++ b/liquibase-core/src/main/java/liquibase/database/c... | fix CORE-<I>
shutdown derby database depends on whether it is embedded or network
server |
diff --git a/tests/framework/helpers/MarkdownTest.php b/tests/framework/helpers/MarkdownTest.php
index <HASH>..<HASH> 100644
--- a/tests/framework/helpers/MarkdownTest.php
+++ b/tests/framework/helpers/MarkdownTest.php
@@ -36,4 +36,20 @@ TEXT;
$this->assertNotEquals(Markdown::process($text), Markdown::process(... | Add test coverage of yii\helpers\BaseMarkdown (#<I>) |
diff --git a/lago/templates.py b/lago/templates.py
index <HASH>..<HASH> 100644
--- a/lago/templates.py
+++ b/lago/templates.py
@@ -228,7 +228,7 @@ class HttpTemplateProvider:
"""
response = self.open_url(url=handle, suffix='.hash')
try:
- return response.read()
+ return ... | py3: templates: Decode downloaded hash to string |
diff --git a/lastfp/__init__.py b/lastfp/__init__.py
index <HASH>..<HASH> 100644
--- a/lastfp/__init__.py
+++ b/lastfp/__init__.py
@@ -116,6 +116,8 @@ def fpid_query(duration, fpdata, metadata=None):
raise CommunicationError('ID query failed')
except httplib.BadStatusLine:
raise CommunicationErro... | yet another HTTP failure more: raising IOError |
diff --git a/src/com/opera/core/systems/OperaDriver.java b/src/com/opera/core/systems/OperaDriver.java
index <HASH>..<HASH> 100644
--- a/src/com/opera/core/systems/OperaDriver.java
+++ b/src/com/opera/core/systems/OperaDriver.java
@@ -210,6 +210,12 @@ public class OperaDriver extends RemoteWebDriver implements TakesScr... | Workaround for letting Opera Mobile autofocus form elements through ECMAscript |
diff --git a/lib/rake/builder/qt_builder.rb b/lib/rake/builder/qt_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/rake/builder/qt_builder.rb
+++ b/lib/rake/builder/qt_builder.rb
@@ -33,9 +33,10 @@ module Rake
end
def configure
- super
+ raise 'programming_language must be C++' if @programming_lan... | Ensure that programming language is C++ |
diff --git a/NavigationReactNative/src/android/src/main/java/com/navigation/reactnative/TabLayoutView.java b/NavigationReactNative/src/android/src/main/java/com/navigation/reactnative/TabLayoutView.java
index <HASH>..<HASH> 100644
--- a/NavigationReactNative/src/android/src/main/java/com/navigation/reactnative/TabLayou... | Checked view pager is not null |
diff --git a/Test/Fixture/SerializableAssocFixture.php b/Test/Fixture/SerializableAssocFixture.php
index <HASH>..<HASH> 100644
--- a/Test/Fixture/SerializableAssocFixture.php
+++ b/Test/Fixture/SerializableAssocFixture.php
@@ -36,7 +36,7 @@ class SerializableAssocFixture extends CakeTestFixture {
*/
public $fields... | fix fixture for mysql <I> |
diff --git a/tasks/update.php b/tasks/update.php
index <HASH>..<HASH> 100644
--- a/tasks/update.php
+++ b/tasks/update.php
@@ -99,7 +99,7 @@ class Fluxbb_Update_Task
protected function down_version($version)
{
- $this->log('Rollback to v'.$version.'...');
+ $this->log('Rollback from v'.$version.'...');
$th... | Small wording fix in update task. |
diff --git a/lib/octopress-deploy/s3.rb b/lib/octopress-deploy/s3.rb
index <HASH>..<HASH> 100644
--- a/lib/octopress-deploy/s3.rb
+++ b/lib/octopress-deploy/s3.rb
@@ -30,7 +30,7 @@ module Octopress
#abort "Seriously, you should. Quitting..." unless Deploy.check_gitignore
@bucket = @s3.buckets[@bucket_... | Fixed wrong command name for add-bucket |
diff --git a/elizabeth/core/providers.py b/elizabeth/core/providers.py
index <HASH>..<HASH> 100644
--- a/elizabeth/core/providers.py
+++ b/elizabeth/core/providers.py
@@ -2656,8 +2656,11 @@ class Generic(object):
self.path = Path()
def __getattr__(self, attrname):
- """Get _attribute witout under... | Updated comments of __getattribute__ |
diff --git a/service/security/hapi-auth-service.js b/service/security/hapi-auth-service.js
index <HASH>..<HASH> 100644
--- a/service/security/hapi-auth-service.js
+++ b/service/security/hapi-auth-service.js
@@ -2,6 +2,7 @@
const Boom = require('boom')
const Hoek = require('hoek')
+const config = require('./../lib/c... | Fixes hard coded ROOT organization id |
diff --git a/packages/tiptap-extensions/src/marks/Link.js b/packages/tiptap-extensions/src/marks/Link.js
index <HASH>..<HASH> 100644
--- a/packages/tiptap-extensions/src/marks/Link.js
+++ b/packages/tiptap-extensions/src/marks/Link.js
@@ -59,7 +59,7 @@ export default class Link extends Mark {
const { schem... | fix #<I>: link click handler no longer open on selection click |
diff --git a/src/main/java/com/xtremelabs/robolectric/shadows/ShadowCanvas.java b/src/main/java/com/xtremelabs/robolectric/shadows/ShadowCanvas.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/xtremelabs/robolectric/shadows/ShadowCanvas.java
+++ b/src/main/java/com/xtremelabs/robolectric/shadows/ShadowCanvas.ja... | Check for null before logging in ShadowCanvas. (src is allowed to be null) |
diff --git a/lib/rvideo/inspector.rb b/lib/rvideo/inspector.rb
index <HASH>..<HASH> 100644
--- a/lib/rvideo/inspector.rb
+++ b/lib/rvideo/inspector.rb
@@ -50,7 +50,7 @@ module RVideo # :nodoc:
raise ArgumentError, "Must supply either an input file or a pregenerated response" if options[:raw_response].nil? and ... | Updated inspector to support ffmpeg output from the macports ffmpeg. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.