upip: Allow to have commented packages in requirements.txt.

pull/143/merge
Paul Sokolovsky 2017-05-01 00:02:33 +03:00
rodzic 9b1f0105a5
commit aa02e41056
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -275,6 +275,8 @@ def main():
l = f.readline()
if not l:
break
if l[0] == "#":
continue
to_install.append(l.rstrip())
elif opt == "--debug":
debug = True