Skip to content

Commit 1496d5a

Browse files
committed
Do not replace < in strings
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 90e631b commit 1496d5a

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

gemfileparser/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
Python library to parse Ruby Gemfiles, gemspec and Cocoapods podspec files.
88
"""
99

10-
from __future__ import absolute_import
11-
from __future__ import print_function
12-
from __future__ import unicode_literals
13-
1410
import collections
1511
import csv
1612
import glob
@@ -108,7 +104,6 @@ def parse_line(self, line):
108104
column.replace("'", "")
109105
.replace('"', "")
110106
.replace("%q<", "")
111-
.replace(">", "")
112107
.replace("(", "")
113108
.replace(")", "")
114109
.replace("[", "")

0 commit comments

Comments
 (0)