Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit ad780f4

Browse files
committed
Merge pull request #410 from SuperCowPowers/v0.3.4-alpha
V0.3.4 alpha
2 parents 1d328ed + 759272e commit ad780f4

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ History
3737
^^^^^^^^^^^^^^^^^^
3838

3939
* Release of workbench for alpha developers and users.
40+
41+
0.3.4 (2014-11-23)
42+
^^^^^^^^^^^^^^^^^^
43+
44+
* Bug fixes related to 'drift' of python modules.
45+
* Release of workbench for alpha developers and users.

workbench_apps/workbench_cli/workbench

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@
33

44
"""Workbench Interactive Shell using IPython"""
55

6-
try:
7-
import workbench_cli.workbench_shell as workbench_shell
8-
except (ImportError, ValueError):
9-
try:
10-
import workbench_apps.workbench_cli.workbench_shell as workbench_shell
11-
except (ImportError, ValueError):
12-
import workbench_shell
6+
from workbench_apps.workbench_cli import workbench_shell
137

148
def run():
159
work_shell = workbench_shell.WorkbenchShell()

workbench_apps/workbench_cli/workbench_shell.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,13 @@ def load_sample(self, file_path, tags=None):
132132
self.tags()
133133

134134
def pivot(self, md5, tag=''):
135-
'''Pivot on the md5e'''
135+
"""Pivot on an md5 (md5 can be a single sample or a sample_set)
136+
Args:
137+
md5: The md5 can be a single sample or a sample_set
138+
tags (optional): a tag for the sample (for the prompt)
139+
Returns:
140+
Nothing but it's sets the active sample/sample_set
141+
"""
136142

137143
# Is the md5 a tag?
138144
ss = self.workbench.generate_sample_set(md5)

0 commit comments

Comments
 (0)