Skip to content

Commit a197c85

Browse files
Replace shortened URLs using goog.gl as goog.gl links will no longer be available
1 parent aa0a1f6 commit a197c85

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
"test:js-coverage": "yarn run test:js-once --collect-coverage",
172172
"test:feature": "yarn run bundle && python regression/runtests.py --pkg feature_tests",
173173
"test": "yarn run test:js-once && yarn run bundle && python regression/runtests.py",
174-
"pep8": "pycodestyle --config=../.pycodestyle ../docs && pycodestyle --config=../.pycodestyle ../pkg && pycodestyle --config=../.pycodestyle ../tools && pycodestyle --config=../.pycodestyle ../web",
174+
"pep8": "pycodestyle --config=../.pycodestyle ../docs ../pkg ../tools ../web",
175175
"auditjs-html": "yarn audit --json | yarn run yarn-audit-html --output ../auditjs.html",
176176
"auditjs": "yarn audit --groups dependencies",
177177
"auditpy": "safety check --full-report -i 51668 -i 52495",

web/pgadmin/misc/file_manager/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def read_file_generator(file, enc):
128128
# errors will never occur regardless of the configured error and
129129
# handles most of the Windows encodings
130130
# handler.
131-
# Ref: https://goo.gl/vDhggS
131+
# Ref: https://tinyurl.com/yvj4u7fw
132132
with codecs.open(file, 'r', encoding='latin-1') as fileObj:
133133
while True:
134134
# 4MB chunk (4 * 1024 * 1024 Bytes)
@@ -740,7 +740,7 @@ def suspend_windows_warning():
740740
"""
741741
Prevents 'there is no disk in drive' waning on windows
742742
"""
743-
# StackOverflow Ref: https://goo.gl/9gYdef
743+
# StackOverflow Ref: https://stackoverflow.com/q/29059399/164233
744744
if _platform == "win32":
745745
kernel32.SetThreadErrorMode(SEM_FAIL, ctypes.byref(oldmode))
746746

0 commit comments

Comments
 (0)