소스 검색

remove trailing white space

jrcoding 4 년 전
부모
커밋
6bd707f0ee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/prepare_packaging.py

+ 1 - 1
tools/prepare_packaging.py

@@ -40,7 +40,7 @@ changelog_file = os.path.join(debian_path, "changelog")
 changelog_version = git_describe_version[1:] if git_describe_version[0] == 'v' else git_describe_version
 # replace all '-' with '~' in version
 changelog_version = changelog_version.replace('-', '~')
- 
+
 with open(changelog_file, 'r') as original: data = original.read()
 with open(changelog_file, 'w') as modified:
     new_entry = """open62541 ({version}) {distribution}; urgency=medium