diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/tinman/handlers/__init__.py b/tinman/handlers/__init__.py index <HASH>..<HASH> 100644 --- a/tinman/handlers/__init__.py +++ b/tinman/handlers/__init__.py @@ -2,4 +2,5 @@ application development. """ +from tinman.handlers.base import RequestHandler from tinman.handlers.session import SessionRequestHand...
Make the base request handler available by default
diff --git a/harvester.py b/harvester.py index <HASH>..<HASH> 100644 --- a/harvester.py +++ b/harvester.py @@ -208,7 +208,8 @@ class Statistics: self._fps_max = 0. def increment_num_images(self, num=1): - self._num_images += num + if self._has_acquired_1st_timestamp: + self._num...
Do not include the first image for taking statistics
diff --git a/phantomcss.js b/phantomcss.js index <HASH>..<HASH> 100755 --- a/phantomcss.js +++ b/phantomcss.js @@ -182,7 +182,7 @@ function screenshot( target, timeToWait, hideSelector, fileName ) { } function isComponentsConfig( obj ) { - return ( obj instanceof Object ) && ( isClipRect( obj ) === false ); + r...
Stronger checking of Object type to fix issue with SlimerJS
diff --git a/languagetool-gui-commons/src/main/java/org/languagetool/gui/Configuration.java b/languagetool-gui-commons/src/main/java/org/languagetool/gui/Configuration.java index <HASH>..<HASH> 100644 --- a/languagetool-gui-commons/src/main/java/org/languagetool/gui/Configuration.java +++ b/languagetool-gui-commons/src...
more consistent variable naming with rest of code
diff --git a/progressbar/bar.py b/progressbar/bar.py index <HASH>..<HASH> 100644 --- a/progressbar/bar.py +++ b/progressbar/bar.py @@ -533,7 +533,7 @@ class ProgressBar(StdRedirectMixin, ResizableMixin, ProgressBarBase): except StopIteration: self.finish() raise - except Genera...
ignoring "impossible" use case for test coverage
diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -53,7 +53,7 @@ class Process } $this->commandline = $commandline; - ...
[Process] In edge cases `getcwd()` can return `false`, then `proc_open()` should get `null` to use default value (the working dir of the current PHP process)
diff --git a/salt/grains/core.py b/salt/grains/core.py index <HASH>..<HASH> 100644 --- a/salt/grains/core.py +++ b/salt/grains/core.py @@ -813,7 +813,10 @@ def hostname(): # domain grains = {} grains['localhost'] = socket.gethostname() - grains['fqdn'] = socket.getfqdn() + if (re.search("\.", soc...
grains/core : fix fqdn / domain return on SunOS systems getfqdn() on Solaris platforms returns the unqualified hostname. In that case, using gethostname() could be a solution. Tested on SmartOS / Solaris <I>
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -24,7 +24,10 @@ module.exports = { }, { test: /\.(css|less)$/, - loader: ExtractTextPlugin.extract('style-loader', 'css-loader') + loader: ExtractTextPlu...
Set localIdentName for css-loader.
diff --git a/tests/model/DataListTest.php b/tests/model/DataListTest.php index <HASH>..<HASH> 100644 --- a/tests/model/DataListTest.php +++ b/tests/model/DataListTest.php @@ -394,13 +394,6 @@ class DataListTest extends SapphireTest { // $this->assertEquals('Joe', $list->Last()->Name, 'Last comment should be from Joe...
Removed test for deprecated NegationFilter
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -6,6 +6,7 @@ window.Promise = Promise; import 'isomorphic-fetch'; import UI from 'reapp-ui'; +import Helpers from 'reapp-ui/helpers'; import 'reapp-object-assign'; // data @@ -66,9 +67,10 @@ module.expo...
export helpers from reapp-ui
diff --git a/tests/Unit/ConnectionTest.php b/tests/Unit/ConnectionTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/ConnectionTest.php +++ b/tests/Unit/ConnectionTest.php @@ -62,7 +62,7 @@ class ConnectionTest extends \PHPUnit_Framework_TestCase $options = new ConnectionOptions(); if (!self::$isGn...
Fixed a broken unit test. Changed direct variable assignation to a setter
diff --git a/beets/mediafile.py b/beets/mediafile.py index <HASH>..<HASH> 100644 --- a/beets/mediafile.py +++ b/beets/mediafile.py @@ -1481,10 +1481,14 @@ class MediaFile(object): ) comments = MediaField( MP3DescStorageStyle(key='COMM'), + MP3DescStorageStyle(key='COMM', desc=u'ID3v1 Comment')...
added some more storage styles for comment fields Original: beetbox/beets@<I>ef<I>
diff --git a/lib/rufus/lua/state.rb b/lib/rufus/lua/state.rb index <HASH>..<HASH> 100644 --- a/lib/rufus/lua/state.rb +++ b/lib/rufus/lua/state.rb @@ -424,6 +424,7 @@ module Rufus::Lua if lua_code == nil + Lib.lua_remove(@pointer, @error_handler) if @error_handler > 0 @error_handler = 0 ...
remove error_handler from stack when unsetting it for gh-<I>
diff --git a/spyderlib/widgets/editor.py b/spyderlib/widgets/editor.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/editor.py +++ b/spyderlib/widgets/editor.py @@ -1096,8 +1096,9 @@ class EditorStack(QWidget): print >>STDOUT, "current_changed:", index, self.data[index].editor, print >>...
Editor/bugfix: an error occured when closing the last opened file (this bug was introduced when implementing the cursor position history feature)
diff --git a/course/reset.php b/course/reset.php index <HASH>..<HASH> 100644 --- a/course/reset.php +++ b/course/reset.php @@ -46,7 +46,6 @@ $strreset = get_string('reset'); $strresetcourse = get_string('resetcourse'); $strremove = get_string('remove'); -$PAGE->navbar->add($strresetcourse); $PAGE->set_t...
MDL-<I> course: Update breadcrumb nodes in the course reset page
diff --git a/easy_thumbnails/files.py b/easy_thumbnails/files.py index <HASH>..<HASH> 100644 --- a/easy_thumbnails/files.py +++ b/easy_thumbnails/files.py @@ -176,7 +176,7 @@ class ThumbnailFile(ImageFieldFile): return self._file def _set_file(self, value): - if not isinstance(value, File): + ...
If ThumbnailFile.file is set to None, don't try to wrap it in a File class. Fixes #<I>
diff --git a/pycm/pycm_overall_func.py b/pycm/pycm_overall_func.py index <HASH>..<HASH> 100644 --- a/pycm/pycm_overall_func.py +++ b/pycm/pycm_overall_func.py @@ -838,7 +838,6 @@ def overall_statistics(**kwargs): "FNR Micro": complement(TPR_PPV_F1_micro), "PPV Micro": TPR_PPV_F1_micro, "F1 Mi...
removed old lines from pycm_overall_func.py
diff --git a/intranet/apps/users/views.py b/intranet/apps/users/views.py index <HASH>..<HASH> 100644 --- a/intranet/apps/users/views.py +++ b/intranet/apps/users/views.py @@ -117,9 +117,9 @@ def picture_view(request, user_id, year=None): data = None if data is None: - image_buffer = io.BytesI...
fix(users): fix image data logic
diff --git a/images/spec/features/refinery/admin/images_spec.rb b/images/spec/features/refinery/admin/images_spec.rb index <HASH>..<HASH> 100644 --- a/images/spec/features/refinery/admin/images_spec.rb +++ b/images/spec/features/refinery/admin/images_spec.rb @@ -148,6 +148,12 @@ module Refinery end ...
Hybrid positive/negative assertion to prove image's presence
diff --git a/lib/debugger/xml/multiprocess/monkey.rb b/lib/debugger/xml/multiprocess/monkey.rb index <HASH>..<HASH> 100644 --- a/lib/debugger/xml/multiprocess/monkey.rb +++ b/lib/debugger/xml/multiprocess/monkey.rb @@ -23,7 +23,7 @@ module Debugger #{private ? "private" : ""} def exec(*args) - ...
Correct way to close interface before calling #exec
diff --git a/test/OfferCommandHandlerTestTrait.php b/test/OfferCommandHandlerTestTrait.php index <HASH>..<HASH> 100644 --- a/test/OfferCommandHandlerTestTrait.php +++ b/test/OfferCommandHandlerTestTrait.php @@ -147,15 +147,20 @@ trait OfferCommandHandlerTestTrait new String('Bart Ramakers'), U...
III-<I>: Fix image removal test in command handler: the image should have been added first
diff --git a/pypeerassets/providers/mintr.py b/pypeerassets/providers/mintr.py index <HASH>..<HASH> 100644 --- a/pypeerassets/providers/mintr.py +++ b/pypeerassets/providers/mintr.py @@ -30,6 +30,9 @@ class Mintr: def wrapper(raw): '''make Mintr API response just like RPC response''' + ...
Mintr: time -> blocktime
diff --git a/rescan.go b/rescan.go index <HASH>..<HASH> 100644 --- a/rescan.go +++ b/rescan.go @@ -510,9 +510,26 @@ func rescan(chain ChainSource, options ...RescanOption) error { ) } - // If we're actually scanning and we have a non-empty watch - // list, then we'll attempt to fetch the filter from the - /...
rescan: prevent unnecessarily fetching filter for block connected In this commit, we introduce a slight optimization to prevent fetching a block filter and its accompanying block when we're not scanning or our watch list is empty.
diff --git a/lib/ahoy/tracker.rb b/lib/ahoy/tracker.rb index <HASH>..<HASH> 100644 --- a/lib/ahoy/tracker.rb +++ b/lib/ahoy/tracker.rb @@ -160,7 +160,7 @@ module Ahoy def visit_token_helper @visit_token_helper ||= begin token = existing_visit_token - token ||= generate_id + token ||= ...
Fixed regression with server not generating visit and visitor tokens, part 2
diff --git a/psamm/datasource/modelseed.py b/psamm/datasource/modelseed.py index <HASH>..<HASH> 100644 --- a/psamm/datasource/modelseed.py +++ b/psamm/datasource/modelseed.py @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with PSAMM. If not, see <http://www.gnu.org/lice...
modelseed: Use CompoundEntry base class
diff --git a/src/Storage/Database/Schema/Comparison/BaseComparator.php b/src/Storage/Database/Schema/Comparison/BaseComparator.php index <HASH>..<HASH> 100644 --- a/src/Storage/Database/Schema/Comparison/BaseComparator.php +++ b/src/Storage/Database/Schema/Comparison/BaseComparator.php @@ -71,4 +71,28 @@ abstract class...
Execute update checks and flag update requirements
diff --git a/tests/test_settings.py b/tests/test_settings.py index <HASH>..<HASH> 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -9,3 +9,7 @@ DATABASES = { 'ENGINE': 'django.db.backends.sqlite3', } } + +PASSWORD_HASHERS = ( + 'django.contrib.auth.hashers.MD5PasswordHasher', +)
use md5 password hasher to speed up the tests
diff --git a/src/naarad/metrics/metric.py b/src/naarad/metrics/metric.py index <HASH>..<HASH> 100644 --- a/src/naarad/metrics/metric.py +++ b/src/naarad/metrics/metric.py @@ -170,8 +170,7 @@ class Metric(object): def calculate_stats(self): stats_to_calculate = ['mean', 'std', 'min', 'max'] # TODO: get input ...
finer grain (1 percent) CDF support instead of 5 percent
diff --git a/src/frontend/org/voltdb/CSVSnapshotFilter.java b/src/frontend/org/voltdb/CSVSnapshotFilter.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/CSVSnapshotFilter.java +++ b/src/frontend/org/voltdb/CSVSnapshotFilter.java @@ -68,6 +68,7 @@ public class CSVSnapshotFilter implements SnapshotDataFilte...
Add a defensive flip based on Ning's feedback. If it is correctly sized it isn't necessary, but it doesn't hurt.
diff --git a/lib/minitest/rake_ci.rb b/lib/minitest/rake_ci.rb index <HASH>..<HASH> 100644 --- a/lib/minitest/rake_ci.rb +++ b/lib/minitest/rake_ci.rb @@ -1,6 +1,9 @@ require 'minitest' -# Autodiscover the _plugin.rb file: -Minitest.load_plugins -Minitest::RakeCIReporter.enable! +# Don't trigger full plugin autodisc...
# avoid triggering a minitest autodiscover in all spawned shells Would lead to Rails being partially loaded in spawned Ruby process, breaking e.g. webpacker asset compilation
diff --git a/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py b/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +++ b/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py @@ -4,6 +4,7 @@ from collections import defau...
JumpTableResolver: Catch AngrError and SimError after stepping a path.
diff --git a/bin/screenstory.js b/bin/screenstory.js index <HASH>..<HASH> 100755 --- a/bin/screenstory.js +++ b/bin/screenstory.js @@ -30,7 +30,7 @@ function collect(val, memo) { } program - .version('0.0.1') + .version(require('package.json').version) .usage('[options] <files ...>') .option('-p, ...
Use package.json version in bin script
diff --git a/examples/src/main/java/alluxio/examples/keyvalue/KeyValueStoreOperations.java b/examples/src/main/java/alluxio/examples/keyvalue/KeyValueStoreOperations.java index <HASH>..<HASH> 100644 --- a/examples/src/main/java/alluxio/examples/keyvalue/KeyValueStoreOperations.java +++ b/examples/src/main/java/alluxio/...
[SMALLFIX] Address comments
diff --git a/extraslibs/src/com/atlantbh/jmeter/plugins/jsonutils/jsonpathassertion/JSONPathAssertion.java b/extraslibs/src/com/atlantbh/jmeter/plugins/jsonutils/jsonpathassertion/JSONPathAssertion.java index <HASH>..<HASH> 100644 --- a/extraslibs/src/com/atlantbh/jmeter/plugins/jsonutils/jsonpathassertion/JSONPathAsse...
Improved JsonAssertion Tell the user which path was being evaluated
diff --git a/xml/node.go b/xml/node.go index <HASH>..<HASH> 100644 --- a/xml/node.go +++ b/xml/node.go @@ -245,8 +245,3 @@ quit: func Parse(r io.Reader) (*Node, error) { return parse(r) } - -// ParseXML returns the parse tree for the XML from the given Reader.Deprecated. -func ParseXML(r io.Reader) (*Node, error) {...
refactor: remove ParseXML() method
diff --git a/python/ray/data/impl/progress_bar.py b/python/ray/data/impl/progress_bar.py index <HASH>..<HASH> 100644 --- a/python/ray/data/impl/progress_bar.py +++ b/python/ray/data/impl/progress_bar.py @@ -1,6 +1,7 @@ from typing import List, Any import ray +from ray.ray_constants import env_integer from ray.type...
[datasets] Add an env var for progress bar behavior (#<I>) Adds a RAY_DATA_DISABLE_PROGRESS_BARS env var to control the default progress bar behavior. The default value is "0". Setting it to "1" disables progress bars, unless they are reenabled again by the set_progress_bars method.
diff --git a/upload/admin/controller/user/user.php b/upload/admin/controller/user/user.php index <HASH>..<HASH> 100644 --- a/upload/admin/controller/user/user.php +++ b/upload/admin/controller/user/user.php @@ -125,7 +125,7 @@ class User extends \Opencart\System\Engine\Controller { } if (isset($this->request->g...
Added integer on $page get request.
diff --git a/intranet/apps/bus/serializers.py b/intranet/apps/bus/serializers.py index <HASH>..<HASH> 100644 --- a/intranet/apps/bus/serializers.py +++ b/intranet/apps/bus/serializers.py @@ -1,3 +1,4 @@ +# pylint: disable=abstract-method from rest_framework import serializers from .models import Route diff --git a/...
chore(pylint): disable abstract method checks for serializers
diff --git a/src/App.php b/src/App.php index <HASH>..<HASH> 100644 --- a/src/App.php +++ b/src/App.php @@ -205,19 +205,19 @@ class App } /** - * @param bool $from_shutdown + * @param bool $for_shutdown if true will not pass in caughtException method. * * @throws ExitApplicationException ...
Add some comment to callExit method
diff --git a/Tests/Twig/Extension/CSS/TypographyTwigExtensionTest.php b/Tests/Twig/Extension/CSS/TypographyTwigExtensionTest.php index <HASH>..<HASH> 100644 --- a/Tests/Twig/Extension/CSS/TypographyTwigExtensionTest.php +++ b/Tests/Twig/Extension/CSS/TypographyTwigExtensionTest.php @@ -25,6 +25,18 @@ use WBW\Bundle\Boo...
Complete Typography Twig extension unit tests
diff --git a/syntax/lexer.go b/syntax/lexer.go index <HASH>..<HASH> 100644 --- a/syntax/lexer.go +++ b/syntax/lexer.go @@ -676,7 +676,7 @@ func (p *parser) newLit(r rune) { if r <= utf8.RuneSelf { p.litBs = p.litBuf[:1] p.litBs[0] = byte(r) - } else { + } else if p.npos < len(p.bs) { w := utf8.RuneLen(r) ...
syntax: don't slice past p.bs in p.newLit If we see encounter an error right before its call, p.npos might be set to len(p.bs)<I>.
diff --git a/client/state/jetpack-connect/reducer/schema.js b/client/state/jetpack-connect/reducer/schema.js index <HASH>..<HASH> 100644 --- a/client/state/jetpack-connect/reducer/schema.js +++ b/client/state/jetpack-connect/reducer/schema.js @@ -34,9 +34,15 @@ export const jetpackAuthAttemptsSchema = { patternProper...
Fix schema properties and improve precision (#<I>) Properties were not being validated, they must be in a properties object. Add `additionalProperties: false`. Add `minimum: 0` to attempts.
diff --git a/lib/bmc-daemon-lib/mq_consumer.rb b/lib/bmc-daemon-lib/mq_consumer.rb index <HASH>..<HASH> 100644 --- a/lib/bmc-daemon-lib/mq_consumer.rb +++ b/lib/bmc-daemon-lib/mq_consumer.rb @@ -37,18 +37,17 @@ module BmcDaemonLib raise MqConsumerException, error end - # Link or create exchange +...
consumer: don't try to create exchange if missing (revert behaviour change)
diff --git a/lib/better_errors/repl/pry.rb b/lib/better_errors/repl/pry.rb index <HASH>..<HASH> 100644 --- a/lib/better_errors/repl/pry.rb +++ b/lib/better_errors/repl/pry.rb @@ -5,11 +5,7 @@ module BetterErrors module REPL class Pry class Input - def initialize(fiber) - @fiber = fiber - ...
clean up unused code in Input class
diff --git a/leancloud/file_.py b/leancloud/file_.py index <HASH>..<HASH> 100644 --- a/leancloud/file_.py +++ b/leancloud/file_.py @@ -56,6 +56,7 @@ class File(object): try: data.read data.tell + data.seek(0, os.SEEK_END) data.seek(0, os.SEEK_SET) exce...
:ok_hand: Comply review suggestions
diff --git a/sqlite3.go b/sqlite3.go index <HASH>..<HASH> 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -51,7 +51,7 @@ func (s sqlite3) HasTable(scope *Scope, tableName string) bool { func (s sqlite3) HasColumn(scope *Scope, tableName string, columnName string) bool { var count int - s.RawScanInt(scope, &count, fmt....
sqlite3: fix HasColumn - problem with detecting columns Handle table definitions like ", \"col"" and ",col".
diff --git a/tasks/faker.js b/tasks/faker.js index <HASH>..<HASH> 100644 --- a/tasks/faker.js +++ b/tasks/faker.js @@ -11,9 +11,9 @@ module.exports = function(grunt) { var path = require('path'); - var faker = require('faker'); + var Faker = require('Faker'); - // Loop through entire json object + //FLoop t...
Mke sure FakerJs is referred to with cap
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup(name='fontaine', author_email='dave@lab6.com', url='https://github.com/davelab6/pyfontaine', # more examples here http://docs.python.org/distutils/examples.html#pure-python-distributio...
append ext to setup.py packages
diff --git a/go/libkb/secret_store_windows.go b/go/libkb/secret_store_windows.go index <HASH>..<HASH> 100644 --- a/go/libkb/secret_store_windows.go +++ b/go/libkb/secret_store_windows.go @@ -100,7 +100,7 @@ func (k WinCredentialStore) migrateSecretStoreFile(g *GlobalContext) error { } func NewSecretStoreAll(g *Glob...
don't gate wincred use on admin flag (#<I>)
diff --git a/dallinger/experiment_server/experiment_server.py b/dallinger/experiment_server/experiment_server.py index <HASH>..<HASH> 100644 --- a/dallinger/experiment_server/experiment_server.py +++ b/dallinger/experiment_server/experiment_server.py @@ -66,7 +66,7 @@ else: @app.route('/') def index(): """Index ...
Return <I> instead of non-existent template Closes #<I>. (Eventually, this should return the ad page with random credentials.)
diff --git a/treeherder/config/settings.py b/treeherder/config/settings.py index <HASH>..<HASH> 100644 --- a/treeherder/config/settings.py +++ b/treeherder/config/settings.py @@ -246,13 +246,15 @@ SILENCED_SYSTEM_CHECKS = [ # User Agents # User agents which will be blocked from making requests to the site. DISALLOWE...
Bug <I> - Update list of blocked User Agents (#<I>) These Golang related User Agents are accessing only the site root and robots.txt, so safe to block. The ActiveData UA block can be removed, since ActiveData no longer makes requests to our API.
diff --git a/txtorcon/torcontrolprotocol.py b/txtorcon/torcontrolprotocol.py index <HASH>..<HASH> 100644 --- a/txtorcon/torcontrolprotocol.py +++ b/txtorcon/torcontrolprotocol.py @@ -713,7 +713,7 @@ class TorControlProtocol(LineOnlyReceiver): d.addErrback(self._auth_failed) return - ...
Allow method 'PASSWORD' in addition to 'HASHEDPASSWORD' for password authentication
diff --git a/src/Phlexible/Bundle/FrontendMediaBundle/Controller/MediaController.php b/src/Phlexible/Bundle/FrontendMediaBundle/Controller/MediaController.php index <HASH>..<HASH> 100644 --- a/src/Phlexible/Bundle/FrontendMediaBundle/Controller/MediaController.php +++ b/src/Phlexible/Bundle/FrontendMediaBundle/Controll...
Add todos to get latest file version
diff --git a/angr/analyses/veritesting.py b/angr/analyses/veritesting.py index <HASH>..<HASH> 100644 --- a/angr/analyses/veritesting.py +++ b/angr/analyses/veritesting.py @@ -269,7 +269,11 @@ class Veritesting(Analysis): else: l.debug("Function inlining is disabled.") + self._input_path.s...
veritesting needs to enable history tracking
diff --git a/glim/__init__.py b/glim/__init__.py index <HASH>..<HASH> 100644 --- a/glim/__init__.py +++ b/glim/__init__.py @@ -2,7 +2,6 @@ version = "0.9.4" from glim import config from glim import core -from glim import view from glim import log from glim import controller from glim import ext @@ -13,8 +12,6 @@...
fix glim package not resolving view module
diff --git a/run_tests.py b/run_tests.py index <HASH>..<HASH> 100755 --- a/run_tests.py +++ b/run_tests.py @@ -58,7 +58,7 @@ def wait_until_stop(): def start_server(): - sys.stderr = open("/dev/null", "w") + sys.stderr = open(os.devnull, "w") env.process = Process(target=start_flask_app, args=(env.host,...
Replace "/dev/null" with os.devnull (#<I>)
diff --git a/tests/viewport-widget.py b/tests/viewport-widget.py index <HASH>..<HASH> 100755 --- a/tests/viewport-widget.py +++ b/tests/viewport-widget.py @@ -23,7 +23,7 @@ for row, col in content.yield_cells(): style = dict(color=glooey.drawing.green) WidgetClass = glooey.PlaceHolder - content[r...
Test a non-square Viewport child.
diff --git a/sphinxcontrib/dotnetdomain.py b/sphinxcontrib/dotnetdomain.py index <HASH>..<HASH> 100644 --- a/sphinxcontrib/dotnetdomain.py +++ b/sphinxcontrib/dotnetdomain.py @@ -8,7 +8,7 @@ from itertools import chain from six import iteritems -from sphinx import addnodes +from sphinx import addnodes, version_inf...
Add support for sphinx <I> latex writer Adds support for multiple formats of entry listing for the latex writer. I'm not sure if there is an easy way to mock out the latex builder, it seems to be more complicated than the others. Fixes #<I>
diff --git a/repository.go b/repository.go index <HASH>..<HASH> 100644 --- a/repository.go +++ b/repository.go @@ -107,7 +107,6 @@ func (r *Repository) Get(ro *RepositoryOptions) (*Repository, error) { func (r *Repository) ListFiles(ro *RepositoryFilesOptions) ([]RepositoryFile, error) { filePath := path.Join("/repo...
Removed accidental print (#<I>)
diff --git a/Controller/SecurityFOSUser1Controller.php b/Controller/SecurityFOSUser1Controller.php index <HASH>..<HASH> 100644 --- a/Controller/SecurityFOSUser1Controller.php +++ b/Controller/SecurityFOSUser1Controller.php @@ -80,11 +80,11 @@ class SecurityFOSUser1Controller extends SecurityController ? Se...
Fix non-use of container for has/get services. (#<I>)
diff --git a/three/three.py b/three/three.py index <HASH>..<HASH> 100644 --- a/three/three.py +++ b/three/three.py @@ -165,7 +165,11 @@ class Three(object): url = self._create_path('requests') self.request = requests.post(url, data=kwargs) content = self.request.content - return self.c...
Only try to convert successful POST requests
diff --git a/lib/toc.js b/lib/toc.js index <HASH>..<HASH> 100644 --- a/lib/toc.js +++ b/lib/toc.js @@ -43,7 +43,7 @@ module.exports = function (source, options) { cache[href] = 1; } - var tocElem = '* [' + header.text.replace(/\\/g, '\\\\') + '](#' + href + ')' + EOL, + var tocElem...
Use 'hyphen' instead of 'asterisk' in the generated TOC
diff --git a/src/main/java/co/aurasphere/botmill/fb/model/incoming/callback/Referral.java b/src/main/java/co/aurasphere/botmill/fb/model/incoming/callback/Referral.java index <HASH>..<HASH> 100644 --- a/src/main/java/co/aurasphere/botmill/fb/model/incoming/callback/Referral.java +++ b/src/main/java/co/aurasphere/botmil...
Fixed the unicode character that's preventing the CI build
diff --git a/js/base/Exchange.js b/js/base/Exchange.js index <HASH>..<HASH> 100644 --- a/js/base/Exchange.js +++ b/js/base/Exchange.js @@ -2244,11 +2244,12 @@ module.exports = class Exchange { const timeInForceUpper = timeInForce.toUpperCase (); const typeLower = type.toLowerCase (); const io...
fok added to disallowed timeInForce with postOnly
diff --git a/app/helpers/xml_helper.rb b/app/helpers/xml_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/xml_helper.rb +++ b/app/helpers/xml_helper.rb @@ -1,2 +1,16 @@ module XmlHelper + def collection_lastmod(collection) + article_updated = collection.articles.find(:first, :order => 'updated_at DESC') + ...
Fix google sitemap. Restores XmlHelper#collection_lastmod, which had been removed in commit f4eeaaa<I>b4c<I>cfe<I>bea<I>f<I>.
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from distutils.core import setup setup( name = 'redash_client', - packages = ['redash_client'], - version = '0.1.4', + packages = ['redash_client', 'redash_client.dashboards'], + version = '0.1.5', des...
Pip packaging should include dashboards subdirectory.
diff --git a/test/unit/search_query_test.rb b/test/unit/search_query_test.rb index <HASH>..<HASH> 100644 --- a/test/unit/search_query_test.rb +++ b/test/unit/search_query_test.rb @@ -10,6 +10,12 @@ module Slingshot::Search assert_respond_to Query.new, :to_json end + should "allow a block to be gi...
[REFACTORING] Added test for instance_eval in Search::Query#initialize
diff --git a/internetarchive/internetarchive.py b/internetarchive/internetarchive.py index <HASH>..<HASH> 100755 --- a/internetarchive/internetarchive.py +++ b/internetarchive/internetarchive.py @@ -60,7 +60,7 @@ class Item(object): #_________________________________________________________________________________...
If file-level metadata is not available for an item, return an empty iterator rather than KeyError in item.files(). Added external_identifier attribute to the File class.
diff --git a/Lib/fontParts/objects/nonelab/__init__.py b/Lib/fontParts/objects/nonelab/__init__.py index <HASH>..<HASH> 100644 --- a/Lib/fontParts/objects/nonelab/__init__.py +++ b/Lib/fontParts/objects/nonelab/__init__.py @@ -1 +1,17 @@ -from font import RFont \ No newline at end of file +from fontParts.objects.base.e...
adding imports to top level nonelab
diff --git a/src/MetaModels/MetaModel.php b/src/MetaModels/MetaModel.php index <HASH>..<HASH> 100644 --- a/src/MetaModels/MetaModel.php +++ b/src/MetaModels/MetaModel.php @@ -729,10 +729,16 @@ class MetaModel implements IMetaModel // Build the right key for the cache. $sortKey = \sprin...
Fix slicing bug in MetaModel::getIdsFromFilter The method `MetaModel::getIdsFromFilter` lost support for offset and limit when we introduced the id cache. The functionality has been restored.
diff --git a/graylog2-server/src/main/java/org/graylog2/CommandLineArguments.java b/graylog2-server/src/main/java/org/graylog2/CommandLineArguments.java index <HASH>..<HASH> 100644 --- a/graylog2-server/src/main/java/org/graylog2/CommandLineArguments.java +++ b/graylog2-server/src/main/java/org/graylog2/CommandLineArgu...
Fixing compilation error related to new Version class
diff --git a/spec/aggregator_cfgs_and_properties_spec.rb b/spec/aggregator_cfgs_and_properties_spec.rb index <HASH>..<HASH> 100644 --- a/spec/aggregator_cfgs_and_properties_spec.rb +++ b/spec/aggregator_cfgs_and_properties_spec.rb @@ -333,7 +333,7 @@ describe JsDuck::Aggregator do /** * Some document...
Remove use of reserved word from cfgs/props spec.
diff --git a/src/API.js b/src/API.js index <HASH>..<HASH> 100644 --- a/src/API.js +++ b/src/API.js @@ -149,6 +149,12 @@ export class API extends ol.Object { ) } + setVisibleBaseLayer (id) { + this.map_.get('baseLayers').recursiveForEach((layer) => { + layer.setVisible(layer.get('id') === id) + }) ...
added setVisibleBaseLayer to API (selected by id)
diff --git a/activerecord/lib/active_record/test_case.rb b/activerecord/lib/active_record/test_case.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/test_case.rb +++ b/activerecord/lib/active_record/test_case.rb @@ -1,3 +1,7 @@ +require 'active_support/deprecation' +require 'active_support/test_case'...
deprecated AR::TestCase in favor of AS::TestCase
diff --git a/core/src/main/java/tachyon/client/TachyonFS.java b/core/src/main/java/tachyon/client/TachyonFS.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/tachyon/client/TachyonFS.java +++ b/core/src/main/java/tachyon/client/TachyonFS.java @@ -11,6 +11,7 @@ import java.util.Map; import java.util.Set; impor...
Add check for empty String for the local directory in addition to null. Add logging to detect why return null.
diff --git a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/ContaoBackendViewTemplate.php b/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/ContaoBackendViewTemplate.php index <HASH>..<HASH> 100644 --- a/src/ContaoCommunityAlliance/DcGeneral/Contao/View/Contao2BackendView/Cont...
Revert some methods in the ContaoBackendViewTemplate and ignore from coding standard. It was broken by phpunit tests
diff --git a/processing/src/main/java/io/druid/segment/data/CompressedObjectStrategy.java b/processing/src/main/java/io/druid/segment/data/CompressedObjectStrategy.java index <HASH>..<HASH> 100644 --- a/processing/src/main/java/io/druid/segment/data/CompressedObjectStrategy.java +++ b/processing/src/main/java/io/druid/...
Removed lz4Fast from CompressedObjectStrategy for compression since it is not currently used
diff --git a/src/apb/engine.py b/src/apb/engine.py index <HASH>..<HASH> 100644 --- a/src/apb/engine.py +++ b/src/apb/engine.py @@ -382,6 +382,7 @@ def get_registry_service_ip(namespace, svc_name): def get_asb_route(): asb_route = None route_list = None + suffix = None possible_namespaces = ["ansible-...
Fix suffix so that its not hardcoded (#<I>) * Fix suffix so that its not hardoded * Fix typo
diff --git a/gruntfile.js b/gruntfile.js index <HASH>..<HASH> 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -329,7 +329,7 @@ module.exports = function(grunt) { buildOLDebug: '(node <%= olDir %>/tasks/build.js <%= olDir %>/config/ol-debug.json app/assets/libs/ol-debug.js)', buildOL: '(node <%...
Build typescript on grunt execution
diff --git a/bundles/org.eclipse.orion.client.ui/web/plugins/languages/json/parser.js b/bundles/org.eclipse.orion.client.ui/web/plugins/languages/json/parser.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/plugins/languages/json/parser.js +++ b/bundles/org.eclipse.orion.client.ui/web/plugin...
Bug <I> - [json] The JSON parser should return location information when an error is encountered
diff --git a/netsnmptestenv.py b/netsnmptestenv.py index <HASH>..<HASH> 100644 --- a/netsnmptestenv.py +++ b/netsnmptestenv.py @@ -59,19 +59,23 @@ class netsnmpTestEnv(object): def shutdown(self): def kill_process(pid): - # First we ask it nicely to quit. If after a second it hasn't, we - # will kill it the ...
Use slightly more intelligent process killing in netsnmptestenv module Instead of hammering the process to be killed with signals continously, sleep small amounts of time and check procfs. This is obviously Linux-specific, but so far I have not heard of anyone trying to use python-netsnmpagent with net-snmp on differe...
diff --git a/km3pipe/db.py b/km3pipe/db.py index <HASH>..<HASH> 100644 --- a/km3pipe/db.py +++ b/km3pipe/db.py @@ -145,6 +145,17 @@ class DBManager(object): else: return dataframe + def t0sets(self, det_id): + content = self._get_content('streamds/t0sets.txt?detid={0}' + ...
Implements t0sets retrieval
diff --git a/vel/rl/env/wrappers/clip_episode_length.py b/vel/rl/env/wrappers/clip_episode_length.py index <HASH>..<HASH> 100644 --- a/vel/rl/env/wrappers/clip_episode_length.py +++ b/vel/rl/env/wrappers/clip_episode_length.py @@ -19,6 +19,7 @@ class ClipEpisodeEnv(gym.Wrapper): if self.current_episode_lengt...
Additional information from the clipped env length wrapper.
diff --git a/src/frontend/org/voltdb/iv2/DuplicateCounter.java b/src/frontend/org/voltdb/iv2/DuplicateCounter.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/iv2/DuplicateCounter.java +++ b/src/frontend/org/voltdb/iv2/DuplicateCounter.java @@ -116,12 +116,9 @@ public class DuplicateCounter Clien...
Remove redundant DuplicateCounter code that expects some old behavior.
diff --git a/nodeshot/scripts/snmp.py b/nodeshot/scripts/snmp.py index <HASH>..<HASH> 100755 --- a/nodeshot/scripts/snmp.py +++ b/nodeshot/scripts/snmp.py @@ -75,7 +75,6 @@ def get_signal(ip): oid_dbm = 1,3,6,1,4,1,14988,1,1,1,2,1,3 #get connected mac and their dbm res = cmdgen.CommandGenerator().nextCmd...
minimal cleanup in snmp.py
diff --git a/global-fs/src/main/java/io/global/fs/http/GlobalFsDriverServlet.java b/global-fs/src/main/java/io/global/fs/http/GlobalFsDriverServlet.java index <HASH>..<HASH> 100644 --- a/global-fs/src/main/java/io/global/fs/http/GlobalFsDriverServlet.java +++ b/global-fs/src/main/java/io/global/fs/http/GlobalFsDriverSe...
Fix global-fs not urldecoding download file names
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js b/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/search/InlineSearchPane.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/...
Bug <I> - Search's "Find in" field should not show the workspace name
diff --git a/mod/forum/discuss.php b/mod/forum/discuss.php index <HASH>..<HASH> 100644 --- a/mod/forum/discuss.php +++ b/mod/forum/discuss.php @@ -64,6 +64,16 @@ add_to_log($course->id, "forum", "move discussion", "discuss.php?d=$discussion->id", "$discussion->id"); } $discuss...
re-merge of "Merged fix from <I> for Bug #<I> - RSS Feeds and Moving Discussions." Originally by vyshane - got dropped accidentally in one of the biiiiig roles commits.
diff --git a/hvac/adapters.py b/hvac/adapters.py index <HASH>..<HASH> 100644 --- a/hvac/adapters.py +++ b/hvac/adapters.py @@ -288,7 +288,7 @@ class RawAdapter(Adapter): _kwargs.update(kwargs) if self.strict_http and method.lower() in ('list',): - # Encty point for standard HTTP substitut...
Encty -> Entry typo fix
diff --git a/lib/objectcache.rb b/lib/objectcache.rb index <HASH>..<HASH> 100644 --- a/lib/objectcache.rb +++ b/lib/objectcache.rb @@ -39,6 +39,10 @@ module Ronin @store = Og.setup(:destroy => false, :evolve_schema => :full, :store => :sqlite, :name => @path) end + def sql(*sql) + @store.get_store...
* Just in case anyone ever needs to, they can execute pure SQL.
diff --git a/src/main/java/org/fest/assertions/api/AbstractAssert.java b/src/main/java/org/fest/assertions/api/AbstractAssert.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fest/assertions/api/AbstractAssert.java +++ b/src/main/java/org/fest/assertions/api/AbstractAssert.java @@ -36,6 +36,7 @@ public abstract...
Add comment to explain wht actual visbility has been set to protected (to allow custom assertion to access actual)
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( author='Nicholas H.Tollervey', author_email='ntoll@ntoll.org', url='https://github.com/ntoll/uflash', - py_modules=['uflash', 'hexify'], + py_modules=['uflash', 'py2hex'], licens...
Updates to reflect hexify -> py2hex changes Changed command name from hexify to py2hex Changed entry point for py2hex
diff --git a/Str.php b/Str.php index <HASH>..<HASH> 100644 --- a/Str.php +++ b/Str.php @@ -185,14 +185,21 @@ class Str } /** - * Trims the given string and replaces multiple consecutive whitespaces with a single space. + * Trims the given string and replaces multiple consecutive whitespaces with a s...
[Utils/Str] Renamed Str::clean() -> Str::collapse() to narrow down its intent. Redirects to Str::trim() and Str::replace(), ie. uses mb_ereg_replace() now internally and properly handles encoding the way the rest of the Str utility does.
diff --git a/testsrc/org/mozilla/javascript/tests/Test262SuiteTest.java b/testsrc/org/mozilla/javascript/tests/Test262SuiteTest.java index <HASH>..<HASH> 100644 --- a/testsrc/org/mozilla/javascript/tests/Test262SuiteTest.java +++ b/testsrc/org/mozilla/javascript/tests/Test262SuiteTest.java @@ -195,13 +195,15 @@ public ...
Print original line number of file in test<I>.
diff --git a/lib/generators/wanko/templates/lib/%name%/engine.rb b/lib/generators/wanko/templates/lib/%name%/engine.rb index <HASH>..<HASH> 100644 --- a/lib/generators/wanko/templates/lib/%name%/engine.rb +++ b/lib/generators/wanko/templates/lib/%name%/engine.rb @@ -4,6 +4,6 @@ module <%= camelized %> class Engine <...
Let newly created extensions be enabled by default
diff --git a/src/pandas_profiling/utils/progress_bar.py b/src/pandas_profiling/utils/progress_bar.py index <HASH>..<HASH> 100644 --- a/src/pandas_profiling/utils/progress_bar.py +++ b/src/pandas_profiling/utils/progress_bar.py @@ -1,6 +1,5 @@ -from collections import Callable from functools import wraps -from typing i...
refactor: typing progress_bar.py
diff --git a/semantic_release/cli.py b/semantic_release/cli.py index <HASH>..<HASH> 100644 --- a/semantic_release/cli.py +++ b/semantic_release/cli.py @@ -161,7 +161,8 @@ def changelog(*, unreleased=False, noop=False, post=False, **kwargs): log = generate_changelog(current_version, None) else: lo...
fix(changelog): send changelog to stdout Fixes #<I>
diff --git a/Facades/Notification.php b/Facades/Notification.php index <HASH>..<HASH> 100644 --- a/Facades/Notification.php +++ b/Facades/Notification.php @@ -13,7 +13,9 @@ use Illuminate\Support\Testing\Fakes\NotificationFake; * @method static mixed channel(string|null $name = null) * @method static void assertNot...
Add missing methods to Notification facade (#<I>)
diff --git a/lib/Models/registerCatalogMembers.js b/lib/Models/registerCatalogMembers.js index <HASH>..<HASH> 100644 --- a/lib/Models/registerCatalogMembers.js +++ b/lib/Models/registerCatalogMembers.js @@ -21,7 +21,6 @@ var createCatalogMemberFromType = require('./createCatalogMemberFromType'); var CsvCatalogItem = r...
Fix eslint warning.
diff --git a/src/Escaper.php b/src/Escaper.php index <HASH>..<HASH> 100644 --- a/src/Escaper.php +++ b/src/Escaper.php @@ -43,7 +43,7 @@ class Escaper */ public function escapeCharacterClass(string $char): string { - return (isset($this->inCharacterClass[$char])) ? $this->inCharacterClass[$char] : $char; + retu...
Replaced ternaries with null coalescing operator