Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Jan 20, 2018
1 parent 3623bff commit 6b81cee
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions adodbapi/adodbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Copyright (C) 2002 Henrik Ekelund, versions 2.1 and later by Vernon Cole
* http://sourceforge.net/projects/pywin32
* https://github.com/mhammond/pywin32
* http://sourceforge.net/projects/adodbapi
This library is free software; you can redistribute it and/or
Expand Down
2 changes: 1 addition & 1 deletion com/win32comext/shell/demos/IActiveDesktop.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from win32com.shell import shell, shellcon
import pythoncom
import time
website='http://sourceforge.net/projects/pywin32/'
website='https://github.com/mhammond/pywin32/'
iad=pythoncom.CoCreateInstance(shell.CLSID_ActiveDesktop, None, pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IActiveDesktop)
opts=iad.GetDesktopItemOptions()
if not (opts['ActiveDesktop'] and opts['EnableComponents']):
Expand Down
2 changes: 1 addition & 1 deletion com/win32comext/shell/demos/IUniformResourceLocator.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __getattr__( self, name ):
linkname+='.url'

ish=InternetShortcut()
ish.SetURL('http://sourceforge.net/projects/pywin32/')
ish.SetURL('https://github.com/mhammond/pywin32')
ish.save(linkname)

## IUniformResourceLocator also give access to IPropertySetStorage
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ def link(self,
args = [sys.executable]
args.append(stamp_script)
args.append("--version=%s" % (pywin32_version,))
args.append("--comments=http://pywin32.sourceforge.net")
args.append("--comments=https://github.com/mhammond/pywin32")
args.append("--original-filename=%s" % (os.path.basename(output_filename),))
args.append("--product=PyWin32")
if '-v' not in sys.argv:
Expand Down Expand Up @@ -2508,7 +2508,7 @@ def convert_optional_data_files(files):
"Pythonwin environment.",
author="Mark Hammond (et al)",
author_email = "mhammond@users.sourceforge.net",
url="http://sourceforge.net/projects/pywin32/",
url="https://github.com/mhammond/pywin32",
license="PSF",
cmdclass = cmdclass,
options = {"bdist_wininst":
Expand Down

0 comments on commit 6b81cee

Please sign in to comment.