Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Jul 2, 2015
1 parent 6ded21c commit a813059
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
be Changelog
=================

Version 0.3.3
-------------

- Minor bugfix, broken `be activate` (time to start thinking about building a test-suite)

Version 0.3.2
-------------

Expand Down
3 changes: 1 addition & 2 deletions be/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,8 +524,7 @@ def activate():
context["BE_TABCOMPLETION"] = os.path.join(
os.path.dirname(__file__), "_autocomplete.sh").replace("\\", "/")

context.pop("BE_ACTIVE")
context.pop("BE_ACTIVE")
context.pop("BE_ACTIVE", None)

sys.exit(subprocess.call(cmd, env=context))

Expand Down
2 changes: 1 addition & 1 deletion be/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 3
VERSION_PATCH = 2
VERSION_PATCH = 3

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down

0 comments on commit a813059

Please sign in to comment.