Skip to content

Commit

Permalink
Remove debug line
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <[email protected]>
  • Loading branch information
techalchemy committed Oct 8, 2018
1 parent b764dfd commit 79c8b9a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/requirementslib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding=utf-8 -*-
__version__ = '1.1.9.dev0'
__version__ = '1.1.8.post1'


from .exceptions import RequirementError
Expand Down
1 change: 0 additions & 1 deletion src/requirementslib/models/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,6 @@ def from_line(cls, line):
hashes = line.split(" --hash=")
line, hashes = hashes[0], hashes[1:]
editable = line.startswith("-e ")
print("Got line: %s" % line)
line = line.split(" ", 1)[1] if editable else line
line, markers = split_markers_from_line(line)
line, extras = _strip_extras(line)
Expand Down

0 comments on commit 79c8b9a

Please sign in to comment.