Fix up a linting issue and removed and unused import in lp-merge.py

This commit is contained in:
Raoul Snyman 2017-03-22 22:12:37 -07:00
parent 659c70b34c
commit cd733f2901
1 changed files with 1 additions and 2 deletions

View File

@ -51,7 +51,6 @@ will print the detected bugs + author for easy copying into the GUI.
""" """
import subprocess import subprocess
import re import re
import sys
import os import os
from urllib.request import urlopen from urllib.request import urlopen
from urllib.error import HTTPError from urllib.error import HTTPError
@ -80,7 +79,7 @@ def is_merge_url_valid(url):
'https://code.launchpad.net/~myusername/openlp/mybranch/+merge/271874') 'https://code.launchpad.net/~myusername/openlp/mybranch/+merge/271874')
return False return False
return True return True
def get_merge_info(url): def get_merge_info(url):
""" """