diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/CanvasArray.php b/CanvasArray.php index <HASH>..<HASH> 100644 --- a/CanvasArray.php +++ b/CanvasArray.php @@ -123,13 +123,9 @@ class CanvasArray implements Iterator, ArrayAccess { **/ private function requestPageNumber($pageNumber, $forceRefresh = false) { if (!isset($this->data[$this->pageNumberTo...
Keep parameters Turns out we were losing the parameters to the query when we were paging through the array. Now we're not.
diff --git a/lib/emitter.js b/lib/emitter.js index <HASH>..<HASH> 100644 --- a/lib/emitter.js +++ b/lib/emitter.js @@ -12,6 +12,12 @@ try { } /** + * Module exports. + */ + +module.exports = Emitter; + +/** * Node-compatible `EventEmitter#removeListener` * * @api public
emitter: re-export `Emitter`
diff --git a/course/enrol.php b/course/enrol.php index <HASH>..<HASH> 100644 --- a/course/enrol.php +++ b/course/enrol.php @@ -18,7 +18,8 @@ if (isguest()) { add_to_log($course->id, "course", "guest", "view.php?id=$course->id", "$REMOTE_ADDR, $REMOTE_HOST"); - } else { + ...
Don't go through enrolment procedure if they are already enrolled.
diff --git a/bosh-dev/lib/bosh/dev/sandbox/services/director_service.rb b/bosh-dev/lib/bosh/dev/sandbox/services/director_service.rb index <HASH>..<HASH> 100644 --- a/bosh-dev/lib/bosh/dev/sandbox/services/director_service.rb +++ b/bosh-dev/lib/bosh/dev/sandbox/services/director_service.rb @@ -78,10 +78,12 @@ module Bo...
Fail if stopping workers fails within timeout
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -43,9 +43,10 @@ requirements = [ ] if not os.getenv("READTHEDOCS"): - requirements.pop("xarray>=0.14.1") - requirements.append("git+https://github.com/pydata/xarray@master#egg=xarray") requirements.append("rtree...
Use remove and ensure that RtD uses xarray@master
diff --git a/test/browsers.spec.js b/test/browsers.spec.js index <HASH>..<HASH> 100644 --- a/test/browsers.spec.js +++ b/test/browsers.spec.js @@ -29,7 +29,7 @@ function testFixture(title, browsers, expectThrows){ } testFixture('Valid: ["last 2 versions"]', ['last 2 versions'], false); -testFixture('Invalid: ["dumm...
Updated a test for property `browsers` `cssnext` used to check contents of "browsers", `postcss-preset-env` doesn't
diff --git a/pavement.py b/pavement.py index <HASH>..<HASH> 100644 --- a/pavement.py +++ b/pavement.py @@ -58,4 +58,4 @@ def docs(): @task def test(): - sh("nosetests --processes=8") + sh("nosetests")
with the increasing port numbers, multiple processes wind up deadlocking
diff --git a/lib/parse-args.js b/lib/parse-args.js index <HASH>..<HASH> 100644 --- a/lib/parse-args.js +++ b/lib/parse-args.js @@ -61,7 +61,6 @@ function buildYargs (withCommands = false) { type: 'boolean' }) .option('temp-directory', { - default: './coverage/tmp', describe: 'directory V8 c...
feat!: default temp directory to report directory (#<I>) BREAKING CHANGE: temp directory now defaults to setting for report directory
diff --git a/lib/mshoplib/src/MShop/Locale/Manager/Default.php b/lib/mshoplib/src/MShop/Locale/Manager/Default.php index <HASH>..<HASH> 100644 --- a/lib/mshoplib/src/MShop/Locale/Manager/Default.php +++ b/lib/mshoplib/src/MShop/Locale/Manager/Default.php @@ -361,6 +361,7 @@ class MShop_Locale_Manager_Default } +...
Minor improvment in locale managers
diff --git a/scripts/bcbio_setup_genome.py b/scripts/bcbio_setup_genome.py index <HASH>..<HASH> 100755 --- a/scripts/bcbio_setup_genome.py +++ b/scripts/bcbio_setup_genome.py @@ -155,6 +155,7 @@ if __name__ == "__main__": raise ValueError("--mirbase and --srna_gtf both need a value.") env.hosts = ["loca...
Allow bcbio_setup_genome to use bioconda installed binaries.
diff --git a/blueprints/ember-cli-chosen/index.js b/blueprints/ember-cli-chosen/index.js index <HASH>..<HASH> 100644 --- a/blueprints/ember-cli-chosen/index.js +++ b/blueprints/ember-cli-chosen/index.js @@ -3,8 +3,6 @@ module.exports = { description: 'Include "Chosen" bower package', afterInstall: function(opti...
Fixing issue with bower package resolution in blueprint
diff --git a/tests/test_bugzilla.py b/tests/test_bugzilla.py index <HASH>..<HASH> 100644 --- a/tests/test_bugzilla.py +++ b/tests/test_bugzilla.py @@ -20,6 +20,7 @@ class TestBugzillaService(ServiceTest): arbitrary_record = { 'component': 'Something', 'priority': 'urgent', + ...
Ooops, add status field to tests
diff --git a/src/Composer/Repository/Vcs/GitHubDriver.php b/src/Composer/Repository/Vcs/GitHubDriver.php index <HASH>..<HASH> 100755 --- a/src/Composer/Repository/Vcs/GitHubDriver.php +++ b/src/Composer/Repository/Vcs/GitHubDriver.php @@ -76,7 +76,7 @@ class GitHubDriver extends VcsDriver return $this->git...
Normalize github URLs generated by the GitHubDriver, fixes #<I>
diff --git a/src/Entity/AbstractEntity.php b/src/Entity/AbstractEntity.php index <HASH>..<HASH> 100644 --- a/src/Entity/AbstractEntity.php +++ b/src/Entity/AbstractEntity.php @@ -441,10 +441,7 @@ abstract class AbstractEntity implements IEntity } } - if (!$metadata->isValid($value)) { - $class = get_class($...
entity: extracted value validation into own method
diff --git a/lib/upnp/control_point/device.rb b/lib/upnp/control_point/device.rb index <HASH>..<HASH> 100644 --- a/lib/upnp/control_point/device.rb +++ b/lib/upnp/control_point/device.rb @@ -255,6 +255,9 @@ module UPnP def extract_spec_version "#{@description[:root][:specVersion][:major]}.#{@descripti...
Fix for descriptions that don't have specVersion. Relates to gh-5.
diff --git a/python_modules/dagster/dagster_tests/general_tests/grpc_tests/test_watch_server.py b/python_modules/dagster/dagster_tests/general_tests/grpc_tests/test_watch_server.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster_tests/general_tests/grpc_tests/test_watch_server.py +++ b/python_modules/d...
Mark complex cycle grpc server watch tests as skipped Summary: Title Test Plan: none Reviewers: prha Reviewed By: prha Differential Revision: <URL>
diff --git a/src/main/java/com/voxeo/tropo/ActionResult.java b/src/main/java/com/voxeo/tropo/ActionResult.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/voxeo/tropo/ActionResult.java +++ b/src/main/java/com/voxeo/tropo/ActionResult.java @@ -24,6 +24,11 @@ public class ActionResult implements Serializable { ...
[CASE# <I>][Problem Description: During recording Upload failure over HTTP, Application didn’t get the correct result][Solution: If the upload fails tropo will give a new field "uploadStatus": ["success"|"failed"|"unavailable”]
diff --git a/demo.js b/demo.js index <HASH>..<HASH> 100644 --- a/demo.js +++ b/demo.js @@ -25,12 +25,10 @@ const memory = Memory({ start: VIDEO_ADDRESS_OFFSET, // -3280 00iii iiiii end: VIDEO_ADDRESS_SIZE + VIDEO_ADDRESS_OFFSET, // 29524, end 11111 11111 }, - /* TODO ...
Chargen - write trit-text character to terminal
diff --git a/ghettoq/backends/pyredis.py b/ghettoq/backends/pyredis.py index <HASH>..<HASH> 100644 --- a/ghettoq/backends/pyredis.py +++ b/ghettoq/backends/pyredis.py @@ -1,6 +1,6 @@ from Queue import Empty -from redis import Redis as Redis +from redis import Redis from ghettoq.backends.base import BaseBackend D...
Redis: purge now returns number of messages deleted.
diff --git a/digitalocean/v2/digitalocean/client.go b/digitalocean/v2/digitalocean/client.go index <HASH>..<HASH> 100644 --- a/digitalocean/v2/digitalocean/client.go +++ b/digitalocean/v2/digitalocean/client.go @@ -35,17 +35,19 @@ func (c *Client) loadResponse(path string, i interface{}) error { return json.Unmarshal...
add constructor for initializing do client with a specific token
diff --git a/plucky/__init__.py b/plucky/__init__.py index <HASH>..<HASH> 100644 --- a/plucky/__init__.py +++ b/plucky/__init__.py @@ -3,7 +3,7 @@ Plucking (deep) keys/paths safely from python collections has never been easier. """ __title__ = 'plucky' -__version__ = '0.3.2' +__version__ = '0.3.3' __author__ = 'Ra...
bumped to <I>
diff --git a/tests/Phinx/Config/ConfigFileTest.php b/tests/Phinx/Config/ConfigFileTest.php index <HASH>..<HASH> 100644 --- a/tests/Phinx/Config/ConfigFileTest.php +++ b/tests/Phinx/Config/ConfigFileTest.php @@ -37,7 +37,9 @@ class ConfigFileTest extends \PHPUnit_Framework_TestCase public function testWorkingGetCon...
Use DIRECTORY_SEPARATOR in expected result Who still uses windows ?
diff --git a/cgroups/fs/apply_raw.go b/cgroups/fs/apply_raw.go index <HASH>..<HASH> 100644 --- a/cgroups/fs/apply_raw.go +++ b/cgroups/fs/apply_raw.go @@ -57,12 +57,13 @@ func GetStats(c *cgroups.Cgroup) (*cgroups.Stats, error) { d, err := getCgroupData(c, 0) if err != nil { - return nil, err + return nil, fmt....
Don't fail getting stats of unknown hierarchies. Docker-DCO-<I>-
diff --git a/core/client/Brocfile.js b/core/client/Brocfile.js index <HASH>..<HASH> 100644 --- a/core/client/Brocfile.js +++ b/core/client/Brocfile.js @@ -29,7 +29,8 @@ app = new EmberApp({ source: './app/styles/app.css', inputFile: 'app.css', browsers: 'last 2 versions', - sourcemap: ...
Temporarily disable sourcemaps - Sourcemaps are adding ~<I>mb to the release zip, which is not cool - Long term, we need to swap this out for a system that will let us do sourcemaps in dev, and generate a separate non-minified css file without the sourcemap when doing a release - Short term, I'm disabling sourcemaps &...
diff --git a/lib/metasploit/model/version.rb b/lib/metasploit/model/version.rb index <HASH>..<HASH> 100644 --- a/lib/metasploit/model/version.rb +++ b/lib/metasploit/model/version.rb @@ -8,6 +8,8 @@ module Metasploit MINOR = 24 # The patch number, scoped to the {MINOR} version number. PATCH = 1 + ...
Change PRERELEASE for branch MSP-<I>
diff --git a/test/mailinSpec.js b/test/mailinSpec.js index <HASH>..<HASH> 100644 --- a/test/mailinSpec.js +++ b/test/mailinSpec.js @@ -104,6 +104,17 @@ describe('Mailin', function () { // ] }], dkim: 'failed', + envelopeFrom: [{ + ...
Added envelope to expected data in tests
diff --git a/src/mixins/trackHelper.js b/src/mixins/trackHelper.js index <HASH>..<HASH> 100644 --- a/src/mixins/trackHelper.js +++ b/src/mixins/trackHelper.js @@ -15,6 +15,8 @@ export var getTrackCSS = function(spec) { var trackWidth, trackHeight; + const trackChildren = (spec.slideCount + 2 * spec.slidesToShow...
Fixed trackChildren is not defined error.
diff --git a/stanza/pipeline/tokenize_processor.py b/stanza/pipeline/tokenize_processor.py index <HASH>..<HASH> 100644 --- a/stanza/pipeline/tokenize_processor.py +++ b/stanza/pipeline/tokenize_processor.py @@ -5,7 +5,7 @@ Processor for performing tokenization import io import logging -from stanza.models.tokenizati...
Fix inconsistency issue between vi and the rest of the languages on how consecutive newlines are handled (#<I>)
diff --git a/cslbot/commands/quote.py b/cslbot/commands/quote.py index <HASH>..<HASH> 100644 --- a/cslbot/commands/quote.py +++ b/cslbot/commands/quote.py @@ -148,7 +148,10 @@ def cmd(send, msg, args): else: send("You aren't allowed to edit quotes. Please ask a bot admin to do it") elif cmdar...
Don't silently eat --nick
diff --git a/service/gcs/bridge/bridge.go b/service/gcs/bridge/bridge.go index <HASH>..<HASH> 100644 --- a/service/gcs/bridge/bridge.go +++ b/service/gcs/bridge/bridge.go @@ -41,6 +41,9 @@ var capabilities = prot.GcsCapabilities{ }, }, RuntimeOsType: prot.OsTypeLinux, + GuestDefinedCapabilities: prot.GcsGuestCap...
Return GuestDefinedCapabilities with SignalProcess support
diff --git a/SimpleAudioIndexer/__init__.py b/SimpleAudioIndexer/__init__.py index <HASH>..<HASH> 100755 --- a/SimpleAudioIndexer/__init__.py +++ b/SimpleAudioIndexer/__init__.py @@ -629,7 +629,7 @@ class SimpleAudioIndexer(object): seconds_passed = 0 for split_index, splitted_file_tim...
Missed an additional underscore for list audio method
diff --git a/config/application.rb b/config/application.rb index <HASH>..<HASH> 100644 --- a/config/application.rb +++ b/config/application.rb @@ -74,6 +74,8 @@ module Peoplefinder # NOTE: may need to eager load paths instead if lib code is commonly called config.autoload_paths << Rails.root.join('lib') + ...
CT-<I> Autoloading has changed - require module in lib directly (#<I>) Generate report on production failed with NameError (uninitialized constant Admin::ManagementController::CsvPublisher): app/controllers/admin/management_controller.rb:7:in `generate_user_behavior_report'
diff --git a/AlphaTwirl/EventReader/ProgressMonitor.py b/AlphaTwirl/EventReader/ProgressMonitor.py index <HASH>..<HASH> 100755 --- a/AlphaTwirl/EventReader/ProgressMonitor.py +++ b/AlphaTwirl/EventReader/ProgressMonitor.py @@ -55,12 +55,12 @@ class MPProgressMonitor(object): def monitor(self): if time.tim...
rename present() _present(), indicating private
diff --git a/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java b/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java +++ b/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java @@ -188,4 +188,14 @@ public class...
Add test for RubyHash::empty?
diff --git a/tests/appveyor_test_cases.py b/tests/appveyor_test_cases.py index <HASH>..<HASH> 100644 --- a/tests/appveyor_test_cases.py +++ b/tests/appveyor_test_cases.py @@ -57,24 +57,6 @@ class TestAppMethods(unittest.TestCase): app.close() lackey.wait(0.9) - def test_app_title(self): - ...
Removed app title test in AppVeyor Unsure why this doesn’t work in Appveyor, but it works locally so I’m assuming it has something to do with the environment.
diff --git a/guava/src/com/google/common/collect/ComparisonChain.java b/guava/src/com/google/common/collect/ComparisonChain.java index <HASH>..<HASH> 100644 --- a/guava/src/com/google/common/collect/ComparisonChain.java +++ b/guava/src/com/google/common/collect/ComparisonChain.java @@ -41,6 +41,9 @@ import javax.annota...
Warn about immutability. ------------- Created by MOE: <URL>
diff --git a/src/utils/getPurchaseEstimate.js b/src/utils/getPurchaseEstimate.js index <HASH>..<HASH> 100644 --- a/src/utils/getPurchaseEstimate.js +++ b/src/utils/getPurchaseEstimate.js @@ -48,13 +48,16 @@ export function getPurchaseEstimate({ client, amount, rate, remaining }) { ? new BigNumber(remaining) ...
Fix issue in purchase estimates when MET price is extremely low
diff --git a/src/js/flowchart.js b/src/js/flowchart.js index <HASH>..<HASH> 100644 --- a/src/js/flowchart.js +++ b/src/js/flowchart.js @@ -2724,7 +2724,7 @@ '#{id} .flowchart-relation[data-shape="polyline"] .flowchart-relation-text,', '#{id} .flowchart-relation[data-shape="bessel"] .flowchart-...
* fix double click not work in relation element without text.
diff --git a/openxc-it/src/main/java/com/openxc/remote/sources/trace/TraceVehicleDataSourceTest.java b/openxc-it/src/main/java/com/openxc/remote/sources/trace/TraceVehicleDataSourceTest.java index <HASH>..<HASH> 100644 --- a/openxc-it/src/main/java/com/openxc/remote/sources/trace/TraceVehicleDataSourceTest.java +++ b/o...
Update trace test with new included boolean.
diff --git a/querydsl-core/src/main/java/com/mysema/query/group/GroupBy.java b/querydsl-core/src/main/java/com/mysema/query/group/GroupBy.java index <HASH>..<HASH> 100644 --- a/querydsl-core/src/main/java/com/mysema/query/group/GroupBy.java +++ b/querydsl-core/src/main/java/com/mysema/query/group/GroupBy.java @@ -248,1...
Fixed generics that break under some older Java version
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -39,8 +39,8 @@ function _update(current, name, fn) { var lookupKey = key; key = lookupIndex(current, key); if (key === undefined) { - throw new Error(`no object found by ${lookupKey}. autocreate is not supp...
fix message interpolation when throwing lookup error - accidental usage of ES6 interpolation causes problems when processing code that expected to be ES5-compatible. this commit replaces interpolation by string concatenation
diff --git a/examples/file_uncompress.js b/examples/file_uncompress.js index <HASH>..<HASH> 100644 --- a/examples/file_uncompress.js +++ b/examples/file_uncompress.js @@ -12,7 +12,8 @@ var outputFile = process.argv[3] || path.basename(inputFile, lz4.extension) var decoder = lz4.createDecoderStream() -var input = f...
Added buffer size in uncompress example (throughput is doubled)
diff --git a/lib/rest-ftp-daemon/job.rb b/lib/rest-ftp-daemon/job.rb index <HASH>..<HASH> 100644 --- a/lib/rest-ftp-daemon/job.rb +++ b/lib/rest-ftp-daemon/job.rb @@ -271,7 +271,8 @@ module RestFtpDaemon ftp_connect_and_login # Connect remote server, login and chdir - ftp_chdir_or_buildpath @target...
bugfix: a target path without subdirs caused a process crash
diff --git a/gobblin-aws/src/main/java/gobblin/aws/GobblinAWSClusterLauncher.java b/gobblin-aws/src/main/java/gobblin/aws/GobblinAWSClusterLauncher.java index <HASH>..<HASH> 100644 --- a/gobblin-aws/src/main/java/gobblin/aws/GobblinAWSClusterLauncher.java +++ b/gobblin-aws/src/main/java/gobblin/aws/GobblinAWSClusterLau...
Minor change: Changed the Gobblin Worker log file name prefix
diff --git a/devices/philips.js b/devices/philips.js index <HASH>..<HASH> 100644 --- a/devices/philips.js +++ b/devices/philips.js @@ -213,7 +213,7 @@ module.exports = [ vendor: 'Philips', description: 'Hue white E12', meta: {turnsOffAtBrightness1: true}, - extend: hueExtend.light_onof...
Add color temp for philips hue <I> (#<I>)
diff --git a/scapy/utils.py b/scapy/utils.py index <HASH>..<HASH> 100644 --- a/scapy/utils.py +++ b/scapy/utils.py @@ -714,6 +714,7 @@ class RawPcapWriter: try: p = pkt.next() except StopIteration: + self._write_header("") re...
wrpcap() creates a valid PCAP file when called with an empty list --HG-- branch : issue-<I>
diff --git a/fastlane/lib/fastlane/swift_fastlane_function.rb b/fastlane/lib/fastlane/swift_fastlane_function.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/swift_fastlane_function.rb +++ b/fastlane/lib/fastlane/swift_fastlane_function.rb @@ -232,7 +232,7 @@ module Fastlane # Adds newlines between ea...
[Fastlane.Swift] Sanitize Swift document comments (#<I>)
diff --git a/classes/Collector.php b/classes/Collector.php index <HASH>..<HASH> 100644 --- a/classes/Collector.php +++ b/classes/Collector.php @@ -221,6 +221,10 @@ abstract class QM_Collector { } public static function hide_qm() { + if ( ! defined( 'QM_HIDE_SELF' ) ) { + return false; + } + if ( null === s...
Don't try to access `QM_HIDE_SELF` before it's defined. Fixes #<I>.
diff --git a/dist/milsymbol.js b/dist/milsymbol.js index <HASH>..<HASH> 100644 --- a/dist/milsymbol.js +++ b/dist/milsymbol.js @@ -2728,7 +2728,7 @@ function textfields(){ } } //Land or letterbased SIDC - if(isNaN(this.SIDC) || this.properties.dimension == "Ground"){ + if(isNaN(this.SIDC) || this.properties...
Think we should use baseDimension here and not dimension
diff --git a/lib/arel/algebra/header.rb b/lib/arel/algebra/header.rb index <HASH>..<HASH> 100644 --- a/lib/arel/algebra/header.rb +++ b/lib/arel/algebra/header.rb @@ -4,9 +4,7 @@ module Arel def initialize(attrs = []) @attributes = attrs.to_ary - @names = Hash.new do |h,k| - h[k] = @attributes...
PERF: fewer objects, less lambdas, less memory
diff --git a/cluster.go b/cluster.go index <HASH>..<HASH> 100644 --- a/cluster.go +++ b/cluster.go @@ -703,12 +703,12 @@ func (c *ClusterClient) WithContext(ctx context.Context) *ClusterClient { if ctx == nil { panic("nil context") } - c2 := c.copy() + c2 := c.clone() c2.ctx = ctx return c2 } -func (c *Cl...
Rename copy to clone
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -86,10 +86,10 @@ setup( packages=find_packages(exclude=['tests', 'tests.*']), install_requires=[ - 'six>=1.10.0', - 'graphql-core>=2.0', - 'graphql-relay>=0.4.5', - 'promise>=2.1', + ...
Prevent requirement breaking changes I have a project still in <I> thats has been broken in my last release since it used `'graphql-core>=<I>'` in the `install_requires`. Since `graphql-core` has released version <I> with breaking changes and there was no instruction to maintain version 1, it was included as a depende...
diff --git a/sexpr/grammar.py b/sexpr/grammar.py index <HASH>..<HASH> 100644 --- a/sexpr/grammar.py +++ b/sexpr/grammar.py @@ -15,7 +15,6 @@ grammar_str_form = \ class Grammar(Matcher): default_options = {} - default_parser_options = {} def __init__(self, source, options = None): rules = sour...
Throw ValueError if loading root rule fails
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 @@ -133,8 +133,6 @@ omitted). """ import logbook -import datetime -import pytz import math import numpy as np @@ -154,7 +152,6 @@ cla...
MAINT: Removes unused started_at member from performance tracker.
diff --git a/lib/jitsu/commands/wizard.js b/lib/jitsu/commands/wizard.js index <HASH>..<HASH> 100644 --- a/lib/jitsu/commands/wizard.js +++ b/lib/jitsu/commands/wizard.js @@ -4,19 +4,27 @@ * (C) 2012, Nodejitsu Inc. * */ - -var fs = require('fs'), - path = require('path'), - common = require('../common'), ...
[api][fix] made/added argument currying congruent in functions
diff --git a/termgraph.py b/termgraph.py index <HASH>..<HASH> 100755 --- a/termgraph.py +++ b/termgraph.py @@ -32,7 +32,7 @@ def main(args): # read data labels, data = read_data(args['filename']) - chart(labels, data) + chart(labels, data, args) def chart(labels, data, args):
Fix args being passed to chart
diff --git a/lib/calabash/android/device.rb b/lib/calabash/android/device.rb index <HASH>..<HASH> 100644 --- a/lib/calabash/android/device.rb +++ b/lib/calabash/android/device.rb @@ -46,7 +46,7 @@ module Calabash def test_server_responding? begin - http_client.get(HTTP::Request.new('ping')).b...
Android::Device: #test_server_responding? don't auto retry
diff --git a/AcmeClient.php b/AcmeClient.php index <HASH>..<HASH> 100644 --- a/AcmeClient.php +++ b/AcmeClient.php @@ -82,7 +82,27 @@ class AcmeClient implements AcmeClientInterface $payload['contact'] = ['mailto:'.$email]; } - return (array) $this->requestResource('POST', ResourcesDirect...
Automatically agreed with agrement (#<I>)
diff --git a/tasks/titanium.js b/tasks/titanium.js index <HASH>..<HASH> 100644 --- a/tasks/titanium.js +++ b/tasks/titanium.js @@ -67,14 +67,18 @@ module.exports = function(grunt) { function(callback) { return execCommand('create', createOpts, callback); }, function(callback) { + console.log(self.filesSrc)...
process files/src from grunt config
diff --git a/dev/FixtureBlueprint.php b/dev/FixtureBlueprint.php index <HASH>..<HASH> 100644 --- a/dev/FixtureBlueprint.php +++ b/dev/FixtureBlueprint.php @@ -129,8 +129,9 @@ class FixtureBlueprint { $parsedItems = array(); $items = preg_split('/ *, */',trim($fieldVal)); foreach($items as $item) { - ...
Don't complain about pre-replaced YAML fixture relations
diff --git a/deblur/workflow.py b/deblur/workflow.py index <HASH>..<HASH> 100644 --- a/deblur/workflow.py +++ b/deblur/workflow.py @@ -819,15 +819,11 @@ def launch_workflow(seqs_fp, working_dir, mean_error, error_dist, # Step 1: Trim sequences to specified length output_trim_fp = join(working_dir, "%s.trim"...
Regression: trimming was possibly passing .gz files to vsearch; not adding a test as this is a removal of code which was added in this past cycle
diff --git a/spead2/__init__.py b/spead2/__init__.py index <HASH>..<HASH> 100644 --- a/spead2/__init__.py +++ b/spead2/__init__.py @@ -160,8 +160,9 @@ class Descriptor(object): class Item(Descriptor): def __init__(self, *args, **kw): + value = kw.pop('value', None) super(Item, self).__init__(*ar...
Allow initial value to be provided for Item in constructor
diff --git a/src/gluonnlp/data/stream.py b/src/gluonnlp/data/stream.py index <HASH>..<HASH> 100644 --- a/src/gluonnlp/data/stream.py +++ b/src/gluonnlp/data/stream.py @@ -103,19 +103,27 @@ class _LazyTransformDataStream(DataStream): def __iter__(self): stream_iter = iter(self._stream) - try: - ...
Fix LazyTransformDataStream prefetching (#<I>)
diff --git a/lib/lhc/interceptors/throttle.rb b/lib/lhc/interceptors/throttle.rb index <HASH>..<HASH> 100644 --- a/lib/lhc/interceptors/throttle.rb +++ b/lib/lhc/interceptors/throttle.rb @@ -33,7 +33,7 @@ class LHC::Throttle < LHC::Interceptor def break_when_quota_reached! options = request.options.dig(:throttl...
Fix case where tacked reamining is nil (#<I>)
diff --git a/scripts/importer/mtasks/berkeley.py b/scripts/importer/mtasks/berkeley.py index <HASH>..<HASH> 100644 --- a/scripts/importer/mtasks/berkeley.py +++ b/scripts/importer/mtasks/berkeley.py @@ -30,12 +30,12 @@ def do_ucb_photo(events, stubs, args, tasks, task_obj, log): photom = json.loads(jsontxt) p...
MAINT: have 'berkeley' stuff store 'oldname'.
diff --git a/src/js/components/Select/Select.js b/src/js/components/Select/Select.js index <HASH>..<HASH> 100644 --- a/src/js/components/Select/Select.js +++ b/src/js/components/Select/Select.js @@ -72,9 +72,11 @@ const Select = forwardRef( messages, multiple, name, + onBlur, onChange, ...
Fix: Introducing Select onBlur and onFocus (#<I>) * Select onBlur and onFocus: introduced both to select component * Small cleanup * Small syntax fix
diff --git a/graffiti/graph/graph.go b/graffiti/graph/graph.go index <HASH>..<HASH> 100644 --- a/graffiti/graph/graph.go +++ b/graffiti/graph/graph.go @@ -103,14 +103,14 @@ type graphElement struct { // Node of the graph type Node struct { - graphElement + graphElement `mapstructure:",squash"` } // Edge of the ...
graph: allow to use mapstructure on nodes and edges
diff --git a/Kwc/Directories/List/ViewMap/Coordinates/Component.php b/Kwc/Directories/List/ViewMap/Coordinates/Component.php index <HASH>..<HASH> 100644 --- a/Kwc/Directories/List/ViewMap/Coordinates/Component.php +++ b/Kwc/Directories/List/ViewMap/Coordinates/Component.php @@ -21,8 +21,7 @@ class Kwc_Directories_List_...
there is no sorting needed because this component shoews points on a map, sorting by name also causes an error if there is no row called map in table
diff --git a/sklearn_porter/Estimator.py b/sklearn_porter/Estimator.py index <HASH>..<HASH> 100644 --- a/sklearn_porter/Estimator.py +++ b/sklearn_porter/Estimator.py @@ -104,8 +104,8 @@ class Estimator(EstimatorApiABC): import BaseSearchCV # pylint: disable=protected-access except ImportErro...
feature/oop-api-refactoring: Indent string on multiple lines correctly
diff --git a/yotta/init.py b/yotta/init.py index <HASH>..<HASH> 100644 --- a/yotta/init.py +++ b/yotta/init.py @@ -71,4 +71,10 @@ def execCommand(args): # TODO: more questions ( bugs url,...), check that the name is available in # the registry... + # Create folders while initing + folders_to_creat = [...
Creating folders while initing
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ setup( description='User-friendly billing for communal households', long_description=open('README.rst').read() if exists("README.rst") else "", install_requires=[ - 'django>=1.8', ...
Attempt to fix installation error (perhaps similar to <URL>)
diff --git a/packages/xod-client-browser/test-func/pageObjects/PromptPopup.js b/packages/xod-client-browser/test-func/pageObjects/PromptPopup.js index <HASH>..<HASH> 100644 --- a/packages/xod-client-browser/test-func/pageObjects/PromptPopup.js +++ b/packages/xod-client-browser/test-func/pageObjects/PromptPopup.js @@ -1...
chore(xod-client-browser): enlarge timeout for mostly failed by timeout selector
diff --git a/kiali/models.py b/kiali/models.py index <HASH>..<HASH> 100644 --- a/kiali/models.py +++ b/kiali/models.py @@ -3,7 +3,7 @@ from kiali.client import ApiObject class Data (ApiObject): __slots__ = [ 'id', "source", 'target', 'version', 'text', 'color', 'style', 'rate', 'service', 'group_by', - ...
Updating Client to <I>
diff --git a/openquake/calculators/base.py b/openquake/calculators/base.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/base.py +++ b/openquake/calculators/base.py @@ -664,11 +664,11 @@ class HazardCalculator(BaseCalculator): logging.info('Computing hazard maps for PoEs=%s', oq.poes) ...
Parallelized save_hmaps [skip hazardlib][demos] Former-commit-id: e<I>c7f9bc4d<I>f<I>e<I>b0b8c3ce9acb8bb<I>c
diff --git a/gcloud/storage/connection.py b/gcloud/storage/connection.py index <HASH>..<HASH> 100644 --- a/gcloud/storage/connection.py +++ b/gcloud/storage/connection.py @@ -414,13 +414,7 @@ class Connection(_Base): if isinstance(bucket, Bucket): return bucket - # Support Python 2 and 3....
No need for 'try: ... except:' when we have 'six'.
diff --git a/src/typeahead/typeahead.js b/src/typeahead/typeahead.js index <HASH>..<HASH> 100644 --- a/src/typeahead/typeahead.js +++ b/src/typeahead/typeahead.js @@ -325,7 +325,7 @@ var Typeahead = (function() { .val('') .removeData() .addClass('tt-hint') - .removeAttr('id name placeholder') + .re...
Remove required attribute from hint. Closes #<I>.
diff --git a/app/assets/javascripts/foreman_proxmox/proxmox.js b/app/assets/javascripts/foreman_proxmox/proxmox.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/foreman_proxmox/proxmox.js +++ b/app/assets/javascripts/foreman_proxmox/proxmox.js @@ -35,9 +35,7 @@ function cdromSelected(item) { }, ...
Refactor Remove unnecessary debug logs
diff --git a/lib/rtkit/cr_series.rb b/lib/rtkit/cr_series.rb index <HASH>..<HASH> 100644 --- a/lib/rtkit/cr_series.rb +++ b/lib/rtkit/cr_series.rb @@ -57,7 +57,7 @@ module RTKIT super(series_uid, 'CR', study, options) # Default attributes: @images = Array.new - @image_uids = Hash.new + @a...
Rename a class variable This makes it equal to that of of the RTImage class.
diff --git a/lib/dill/widget.rb b/lib/dill/widget.rb index <HASH>..<HASH> 100644 --- a/lib/dill/widget.rb +++ b/lib/dill/widget.rb @@ -219,7 +219,7 @@ module Dill # Compares the current widget with +value+, waiting for the comparison # to return +true+. def ==(value) - wait_for { cast_to(value) == v...
[widget] Clarify method name.
diff --git a/lib/openscap/version.rb b/lib/openscap/version.rb index <HASH>..<HASH> 100644 --- a/lib/openscap/version.rb +++ b/lib/openscap/version.rb @@ -10,5 +10,5 @@ # module OpenSCAP - VERSION = '0.4.0' + VERSION = '0.4.1' end
ruby-openscap-<I> - Rubocop fixes - Allows for bzip2ed memory to be used as OpenSCAP::Source - requires OpenSCAP-<I> base package
diff --git a/domaintools_async/__init__.py b/domaintools_async/__init__.py index <HASH>..<HASH> 100644 --- a/domaintools_async/__init__.py +++ b/domaintools_async/__init__.py @@ -1,8 +1,6 @@ """Adds async capabilities to the base product object""" import asyncio -import aiohttp from httpx import AsyncClient -import ...
Remove some unused imports and modify dependencies.
diff --git a/lib/growl/growl.rb b/lib/growl/growl.rb index <HASH>..<HASH> 100644 --- a/lib/growl/growl.rb +++ b/lib/growl/growl.rb @@ -1,4 +1,3 @@ - module Growl @@path = 'growlnotify' @@ -212,6 +211,7 @@ module Growl switch :port switch :auth switch :crypt + switch :url end
Add url switch Adding the url switch allows for Growl.url to be called. What this brings is the ability to link a notification to a specific url in the notification itself.
diff --git a/thinc/api.py b/thinc/api.py index <HASH>..<HASH> 100644 --- a/thinc/api.py +++ b/thinc/api.py @@ -12,7 +12,7 @@ from .util import to_categorical, get_width, xp2torch, torch2xp from .backends import get_ops, set_current_ops, get_current_ops, use_device from .backends import Ops, CupyOps, NumpyOps -from ...
add CauchySimilarity also to api
diff --git a/lib/interceptor.js b/lib/interceptor.js index <HASH>..<HASH> 100644 --- a/lib/interceptor.js +++ b/lib/interceptor.js @@ -10,7 +10,7 @@ const parserFactory = require('./data-processor-row'); */ class RowProcessorInterceptor extends Interceptor { - constructor(endpoint, config) { + constructor(config, ...
fix(constructor): Changed the order of config, and endpoint
diff --git a/satpy/scene.py b/satpy/scene.py index <HASH>..<HASH> 100644 --- a/satpy/scene.py +++ b/satpy/scene.py @@ -1522,12 +1522,11 @@ def _check_file_protocols_for_dicts(filenames): def _check_file_protocols(filenames): local_files, remote_files, fs_files = _sort_files_to_local_remote_and_fsfiles(filenames...
Let import error stop processing when remote files can't be handled
diff --git a/activerecord/lib/active_record/associations/has_many_association.rb b/activerecord/lib/active_record/associations/has_many_association.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/associations/has_many_association.rb +++ b/activerecord/lib/active_record/associations/has_many_associat...
If a counter_cache exists, use it for #empty?
diff --git a/spyder/plugins/editor/plugin.py b/spyder/plugins/editor/plugin.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/editor/plugin.py +++ b/spyder/plugins/editor/plugin.py @@ -888,15 +888,12 @@ class Editor(SpyderPluginWidget): self.main.debug_toolbar_actions += debug_toolbar_actions # ...
Editor: Reorganize Source menu a bit
diff --git a/recipe/shelf.py b/recipe/shelf.py index <HASH>..<HASH> 100644 --- a/recipe/shelf.py +++ b/recipe/shelf.py @@ -36,11 +36,11 @@ def ingredient_from_validated_dict(ingr_dict, selectable): return InvalidIngredient(error=error) except VisitError as e: # Lark returns the InvalidColumnError...
user VisitError.orig_exc
diff --git a/scripts/reenroller.rb b/scripts/reenroller.rb index <HASH>..<HASH> 100644 --- a/scripts/reenroller.rb +++ b/scripts/reenroller.rb @@ -41,6 +41,7 @@ module RightScale # === Return # true:: Always return true def run(options) + check_privileges AgentConfig.root_dir = AgentConfig.ri...
acu<I> make rs_reenroll to check privileges before doing anything
diff --git a/pyrogram/__init__.py b/pyrogram/__init__.py index <HASH>..<HASH> 100644 --- a/pyrogram/__init__.py +++ b/pyrogram/__init__.py @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with Pyrogram. If not, see <http://www.gnu.org/licenses/>. -__version__ =...
Update Pyrogram to <I>
diff --git a/latinol/latinol.py b/latinol/latinol.py index <HASH>..<HASH> 100644 --- a/latinol/latinol.py +++ b/latinol/latinol.py @@ -13,7 +13,7 @@ RULES = ((ur'cc', ur'ks'), (ur'qu([eiéí])', ur'k\1'), (ur'ü', ur'u'), (ur'q([aouáóú])', ur'k\1'), - (ur'w', ur'gu'), + (ur'w(...
fix capitalization for w => gu
diff --git a/lib/core/engine/iteration.js b/lib/core/engine/iteration.js index <HASH>..<HASH> 100644 --- a/lib/core/engine/iteration.js +++ b/lib/core/engine/iteration.js @@ -105,6 +105,8 @@ class Iteration { if (recordVideo && !combine) { await setOrangeBackground(browser.getDriver()); await v...
Give ffmpeg some extra time before we start
diff --git a/salt/client/__init__.py b/salt/client/__init__.py index <HASH>..<HASH> 100644 --- a/salt/client/__init__.py +++ b/salt/client/__init__.py @@ -1054,6 +1054,10 @@ class LocalClient(object): if raw['data']['return'] == {}: continue + if 'return' in raw['d...
Fixing a weird edge case when using salt syndics and targetting via pillar. Without this fix the master of masters ends up in an infinite loop since the data returned from the minions is differently structured than if a sync was not in use. (#<I>)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -150,6 +150,7 @@ def CDF_build(self, ppath): 'OS=' + os_name, 'ENV=' + env_name, 'CURSES=no', + 'SHARED=no', 'UCOPTIONS=-Dsingle_underscore', 'all',] ...
Trying to get build working on Travis CI
diff --git a/commands/authenticate.go b/commands/authenticate.go index <HASH>..<HASH> 100644 --- a/commands/authenticate.go +++ b/commands/authenticate.go @@ -100,9 +100,11 @@ func (cmd *Authenticate) Handle(mechanisms map[string]sasl.Server, conn Authenti return err } - scanner.Scan() - if err := scanner.Er...
commands: Properly handle EOF in Authenticate.Handle scanner.Scan returns false but scanner.Err returns nil in case of EOF.
diff --git a/datasource/configdrive/configdrive.go b/datasource/configdrive/configdrive.go index <HASH>..<HASH> 100644 --- a/datasource/configdrive/configdrive.go +++ b/datasource/configdrive/configdrive.go @@ -69,7 +69,9 @@ func (cd *configDrive) FetchMetadata() (metadata datasource.Metadata, err error) metadata.S...
configdrive: check the network config path Check to make sure that a network config path has been specified before trying to read from it. Otherwise, it will end up trying to read a directory.
diff --git a/lib/headerNameSpecialCases.js b/lib/headerNameSpecialCases.js index <HASH>..<HASH> 100644 --- a/lib/headerNameSpecialCases.js +++ b/lib/headerNameSpecialCases.js @@ -70,10 +70,11 @@ module.exports = { 'x-att-deviceid': 'X-ATT-DeviceId', 'x-cdn': 'X-CDN', 'x-csa-complaints': 'x-csa-complaints...
Added special case for X-Original-IP header name.
diff --git a/sendbeacon.js b/sendbeacon.js index <HASH>..<HASH> 100755 --- a/sendbeacon.js +++ b/sendbeacon.js @@ -12,7 +12,7 @@ function polyfill() { }; function sendBeacon(url, data) { - const event = this.event && this.event.type; + const event = this.event && this.event.type ? this.event.type : this.event; ...
fix: so that sync will not always be false the old state makes sync always false because the value for event will always be true/false not 'unload' or 'beforeunload'
diff --git a/src/spec.js b/src/spec.js index <HASH>..<HASH> 100644 --- a/src/spec.js +++ b/src/spec.js @@ -14,5 +14,5 @@ * limitations under the License. */ -var testContext = require.context('.', true, /\.spec\.ts/); +var testContext = require.context('.', true, /\.spec\.ts$/); testContext.keys().map(testContex...
chore: use better regular expression for unit test paths
diff --git a/cassandra/connection.py b/cassandra/connection.py index <HASH>..<HASH> 100644 --- a/cassandra/connection.py +++ b/cassandra/connection.py @@ -374,6 +374,8 @@ class Connection(object): @defunct_on_error def _handle_options_response(self, options_response): + if self.is_defunct: + ...
Prevent infinite loop when errored on initial connection