Skip to content

Commit

Permalink
Merge pull request #26 from Kwpolska/exceptions2.0
Browse files Browse the repository at this point in the history
Exceptions 2.0
  • Loading branch information
Kwpolska committed Mar 29, 2013
2 parents d16213b + a20b90f commit a62d84b
Show file tree
Hide file tree
Showing 21 changed files with 899 additions and 1,113 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-03-23
:Version: 2.99.4.0
:Date: 2013-03-27
:Version: 2.99.5.0

.. index:: CHANGELOG

Expand All @@ -28,6 +28,7 @@ PKGBUILDer uses the following versioning schemes:
Generation 3
============

:2.99.5.0: Exceptions 2.0 fully implemented. [testing git-only version]
:2.99.4.0: First four stages done. [testing git-only version]

Generation 2
Expand Down
8 changes: 4 additions & 4 deletions INSTALL.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def install(pkgname):
Something went wrong. Please read makepkg's output and try again.
You can also try to debug the work of this script yourself.
All the files this script was working on are placed in
{}
{0}
(the number is random).
If I am wrong, though, congratulations!
Expand All @@ -124,7 +124,7 @@ def install(pkgname):
print('')

UID = os.geteuid()
PATH = '/tmp/pkgbuilderinstall-{}'.format(random.randint(1, 100))
PATH = '/tmp/pkgbuilderinstall-{0}'.format(random.randint(1, 100))
if os.path.exists(PATH) is False:
os.mkdir(PATH)
os.chdir(PATH)
Expand All @@ -144,7 +144,7 @@ def install(pkgname):
Read the above output. If the script had any problems, run it
again. You can also try to debug the work of this script yourself.
All the files this script was working on are placed in
{}
{0}
(the number is random).
If everything went fine, though, congratulations! You can now use
Expand All @@ -163,7 +163,7 @@ def install(pkgname):
else:
print(_("""It looks like you want to quit. Okay then, goodbye.
All the files this script was working on are placed in
{}
{0}
(the number is random).
If that's what you want to do, go for it. If it isn't, run this
Expand Down
5 changes: 3 additions & 2 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Appendix C. Changelog
:Author: Kwpolska <[email protected]>
:Copyright: © 2011-2013, Kwpolska.
:License: BSD (see /LICENSE or :doc:`Appendix B <LICENSE>`.)
:Date: 2013-03-23
:Version: 2.99.4.0
:Date: 2013-03-27
:Version: 2.99.5.0

.. index:: CHANGELOG

Expand All @@ -28,6 +28,7 @@ PKGBUILDer uses the following versioning schemes:
Generation 3
============

:2.99.5.0: Exceptions 2.0 fully implemented. [testing git-only version]
:2.99.4.0: First four stages done. [testing git-only version]

Generation 2
Expand Down
Binary file removed locale/en/LC_MESSAGES/pkgbuilder.mo
Binary file not shown.
Loading

0 comments on commit a62d84b

Please sign in to comment.