Skip to content

Commit

Permalink
Regenerate installers
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and webknjaz committed Apr 21, 2018
1 parent 68769b0 commit 09a1a58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 2.6/get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except:
except Exception:
continue

if implicit_pip and req.name == "pip":
Expand Down
2 changes: 1 addition & 1 deletion 3.2/get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except:
except Exception:
continue

if implicit_pip and req.name == "pip":
Expand Down
2 changes: 1 addition & 1 deletion 3.3/get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except:
except Exception:
continue

if implicit_pip and req.name == "pip":
Expand Down
2 changes: 1 addition & 1 deletion get-pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def parse_args(self, args):
for arg in args:
try:
req = InstallRequirement.from_line(arg)
except:
except Exception:
continue

if implicit_pip and req.name == "pip":
Expand Down

0 comments on commit 09a1a58

Please sign in to comment.