Skip to content

Commit

Permalink
Patch release to fix issue with s3_info causing test failures under p…
Browse files Browse the repository at this point in the history
…ython 3.8
  • Loading branch information
jpfxgood committed Sep 2, 2020
1 parent 7457126 commit e9bdf03
Show file tree
Hide file tree
Showing 16 changed files with 4,883 additions and 5,928 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
2 changes: 1 addition & 1 deletion bkp_core/s3_mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def s3_ls( path, recurse=False ):
final_output = StringIO()
for l in StringIO(output):
l = l.strip()
parts = re.split(r'\s*',l,3)
parts = re.split(r'\s+',l,3)
if parts[0] == "DIR":
dirs.append(parts[-1])
else:
Expand Down
2 changes: 1 addition & 1 deletion bkp_core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.1'
321 changes: 123 additions & 198 deletions docs/bkp_core/bkp_conf.m.html

Large diffs are not rendered by default.

2,806 changes: 1,353 additions & 1,453 deletions docs/bkp_core/bkp_mod.m.html

Large diffs are not rendered by default.

454 changes: 187 additions & 267 deletions docs/bkp_core/file_mod.m.html

Large diffs are not rendered by default.

477 changes: 199 additions & 278 deletions docs/bkp_core/fs_mod.m.html

Large diffs are not rendered by default.

427 changes: 173 additions & 254 deletions docs/bkp_core/logger.m.html

Large diffs are not rendered by default.

1,426 changes: 671 additions & 755 deletions docs/bkp_core/rstr_mod.m.html

Large diffs are not rendered by default.

933 changes: 427 additions & 506 deletions docs/bkp_core/s3_mod.m.html

Large diffs are not rendered by default.

1,213 changes: 564 additions & 649 deletions docs/bkp_core/ssh_mod.m.html

Large diffs are not rendered by default.

147 changes: 37 additions & 110 deletions docs/bkp_core/stackdump.m.html

Large diffs are not rendered by default.

277 changes: 101 additions & 176 deletions docs/bkp_core/sync_conf.m.html

Large diffs are not rendered by default.

1,765 changes: 840 additions & 925 deletions docs/bkp_core/sync_mod.m.html

Large diffs are not rendered by default.

483 changes: 203 additions & 280 deletions docs/bkp_core/util.m.html

Large diffs are not rendered by default.

76 changes: 2 additions & 74 deletions docs/bkp_core/version.m.html
Original file line number Diff line number Diff line change
Expand Up @@ -851,77 +851,6 @@

</style>

<style type="text/css">
.codehilite .hll { background-color: #ffffcc }
.codehilite { background: #f8f8f8; }
.codehilite .c { color: #408080; font-style: italic } /* Comment */
.codehilite .err { border: 1px solid #FF0000 } /* Error */
.codehilite .k { color: #008000; font-weight: bold } /* Keyword */
.codehilite .o { color: #666666 } /* Operator */
.codehilite .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
.codehilite .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.codehilite .cp { color: #BC7A00 } /* Comment.Preproc */
.codehilite .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
.codehilite .c1 { color: #408080; font-style: italic } /* Comment.Single */
.codehilite .cs { color: #408080; font-style: italic } /* Comment.Special */
.codehilite .gd { color: #A00000 } /* Generic.Deleted */
.codehilite .ge { font-style: italic } /* Generic.Emph */
.codehilite .gr { color: #FF0000 } /* Generic.Error */
.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.codehilite .gi { color: #00A000 } /* Generic.Inserted */
.codehilite .go { color: #888888 } /* Generic.Output */
.codehilite .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.codehilite .gs { font-weight: bold } /* Generic.Strong */
.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.codehilite .gt { color: #0044DD } /* Generic.Traceback */
.codehilite .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.codehilite .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.codehilite .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.codehilite .kp { color: #008000 } /* Keyword.Pseudo */
.codehilite .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.codehilite .kt { color: #B00040 } /* Keyword.Type */
.codehilite .m { color: #666666 } /* Literal.Number */
.codehilite .s { color: #BA2121 } /* Literal.String */
.codehilite .na { color: #7D9029 } /* Name.Attribute */
.codehilite .nb { color: #008000 } /* Name.Builtin */
.codehilite .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.codehilite .no { color: #880000 } /* Name.Constant */
.codehilite .nd { color: #AA22FF } /* Name.Decorator */
.codehilite .ni { color: #999999; font-weight: bold } /* Name.Entity */
.codehilite .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.codehilite .nf { color: #0000FF } /* Name.Function */
.codehilite .nl { color: #A0A000 } /* Name.Label */
.codehilite .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.codehilite .nt { color: #008000; font-weight: bold } /* Name.Tag */
.codehilite .nv { color: #19177C } /* Name.Variable */
.codehilite .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.codehilite .w { color: #bbbbbb } /* Text.Whitespace */
.codehilite .mb { color: #666666 } /* Literal.Number.Bin */
.codehilite .mf { color: #666666 } /* Literal.Number.Float */
.codehilite .mh { color: #666666 } /* Literal.Number.Hex */
.codehilite .mi { color: #666666 } /* Literal.Number.Integer */
.codehilite .mo { color: #666666 } /* Literal.Number.Oct */
.codehilite .sa { color: #BA2121 } /* Literal.String.Affix */
.codehilite .sb { color: #BA2121 } /* Literal.String.Backtick */
.codehilite .sc { color: #BA2121 } /* Literal.String.Char */
.codehilite .dl { color: #BA2121 } /* Literal.String.Delimiter */
.codehilite .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.codehilite .s2 { color: #BA2121 } /* Literal.String.Double */
.codehilite .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.codehilite .sh { color: #BA2121 } /* Literal.String.Heredoc */
.codehilite .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.codehilite .sx { color: #008000 } /* Literal.String.Other */
.codehilite .sr { color: #BB6688 } /* Literal.String.Regex */
.codehilite .s1 { color: #BA2121 } /* Literal.String.Single */
.codehilite .ss { color: #19177C } /* Literal.String.Symbol */
.codehilite .bp { color: #008000 } /* Name.Builtin.Pseudo */
.codehilite .fm { color: #0000FF } /* Name.Function.Magic */
.codehilite .vc { color: #19177C } /* Name.Variable.Class */
.codehilite .vg { color: #19177C } /* Name.Variable.Global */
.codehilite .vi { color: #19177C } /* Name.Variable.Instance */
.codehilite .vm { color: #19177C } /* Name.Variable.Magic */
.codehilite .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>

<style type="text/css">

Expand Down Expand Up @@ -1059,9 +988,8 @@ <h1 class="title"><span class="name">bkp_core.version</span> module</h1>

<p class="source_link"><a href="javascript:void(0);" onclick="toggle('source-bkp_core.version', this);">Show source &equiv;</a></p>
<div id="source-bkp_core.version" class="source">
<div class="codehilite"><pre><span></span><span class="n">__version__</span> <span class="o">=</span> <span class="s1">&#39;1.0.0&#39;</span>
</pre></div>

<pre><code>__version__ = '1.0.1'
</code></pre>
</div>

</header>
Expand Down

0 comments on commit e9bdf03

Please sign in to comment.