Skip to content

Commit

Permalink
Correct typo in URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Dec 11, 2021
1 parent 8bf72f6 commit 6f3c682
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@
"sarge"
]
},
"source_url": "https://github.com/vsajip/sarge/releases/0.1.7.post0/sarge-0.1.7.post0.tar.gz",
"source_url": "https://github.com/vsajip/sarge/releases/download/0.1.7.post1/sarge-0.1.7.post1.tar.gz",
"summary": "A wrapper for subprocess which provides command pipeline functionality.",
"version": "0.1.7.post0"
"version": "0.1.7.post1"
},
"metadata": {
"description": "The sarge package provides a wrapper for subprocess which provides command pipeline functionality. This package leverages subprocess to provide easy-to-use cross-platform command pipelines with a Posix flavour: you can have chains of commands using ;, &, pipes using ``|`` and ``|&``, and redirection.",
"name": "sarge",
"platform": "No particular restrictions",
"version": "0.1.7.post0"
"version": "0.1.7.post1"
},
"source": {
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion sarge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def createLock(self): self.lock = None
'shell_format', 'run', 'parse_command_line',
'capture_stdout', 'capture_stderr', 'capture_both')

__version__ = '0.1.7.post0'
__version__ = '0.1.7.post1'
__date__ = '2021-12-11'

logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def description():
maintainer='Vinay Sajip',
maintainer_email='vinay_sajip@yahoo.co.uk',
url='http://sarge.readthedocs.org/',
download_url=('https://github.com/vsajip/sarge/releases/' + sarge.__version__ +
download_url=('https://github.com/vsajip/sarge/releases/download/' + sarge.__version__ +
'/sarge-%s.tar.gz' % sarge.__version__),
packages=['sarge'],
keywords=['subprocess', 'wrapper', 'external', 'command'],
Expand Down

0 comments on commit 6f3c682

Please sign in to comment.