This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > h pg:diagnose -a campgrounddemo | |
| Report 1544d87c-b8ea-445d-976c-81d0a8279c0a for campgrounddemo::DATABASE_URL | |
| available for one month after creation on 2015-11-03 23:52:22.85383+00 | |
| RED: Hit Rate | |
| Name Ratio | |
| ----------------------------------- ------------------ | |
| overall index hit rate 0.8686475184695037 | |
| overall cache hit rate 0.7648839967012158 | |
| campgrounddemo._trigger_log 0.9835142910600523 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| searchpath='.' | |
| if [ $# -gt 0 ]; then | |
| searchpath=$1 | |
| shift 1 | |
| fi | |
| searchterm="-e container-fluid -e row-fluid -e span* -e offset* -e brand* -e navbar -e nav -e hero-unit -e icon* -e btn -e btb-mini -e btn-small -e btn-large -e visible-phone -e visible-tablet -e visible-desktop -e hidden-phone -e hidden-tablet -e hidden-desktop -e input-prepend -e input-append -e add-on -e btn-navbar -e thumbnail" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import sys | |
| import time | |
| from circus.tests.support import TestCircus | |
| class TestCommandline(TestCircus): | |
| def setUp(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/zest/releaser/svn.py b/zest/releaser/svn.py | |
| index 45c10ad..44696ed 100644 | |
| --- a/zest/releaser/svn.py | |
| +++ b/zest/releaser/svn.py | |
| @@ -28,7 +28,7 @@ class Subversion(BaseVersionControl): | |
| # Note: slashes are used to prevent problems with 'tha.tagfinder'-like | |
| # project names... | |
| for remove in ['/trunk', '/tags', '/branches', '/tag', '/branch']: | |
| - base = base.split(remove)[0] | |
| + base = base.rsplit(remove, 1)[0] |