Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Commit

Permalink
updated models to fix string hidden value
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMillerGIS committed Feb 18, 2016
1 parent 9ba683b commit 8efa02e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified tools/ArcRESTToolbox.tbx
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/src/append_fc_to_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def main(*argv):

if bReqUserName and \
(username == None or username == "#" or str(username).strip() == "" or \
password == None or password== "#" or str(password).strip() == ""):
password == None or password== "#" or password== "*" or str(password).strip() == ""):
outputPrinter ("{0} Requires a username and password".format(version), typeOfMessage='error')
return

Expand Down
2 changes: 1 addition & 1 deletion tools/src/append_groupLayer_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def main(*argv):

if bReqUserName and \
(username == None or username == "#" or str(username).strip() == "" or \
password == None or password== "#" or str(password).strip() == ""):
password == None or password== "#" or password== "*" or str(password).strip() == ""):
outputPrinter ("{0} Requires a username and password".format(version), typeOfMessage='error')
return

Expand Down
4 changes: 2 additions & 2 deletions tools/src/delete_rows_from_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def main(*argv):

if bReqUserName and \
(username == None or username == "#" or str(username).strip() == "" or \
password == None or password== "#" or str(password).strip() == ""):
password == None or password== "#" or password== "*" or str(password).strip() == ""):
outputPrinter ("{0} Requires a username and password".format(version), typeOfMessage='error')
return

Expand Down Expand Up @@ -133,7 +133,7 @@ def main(*argv):
else:
featSucces = featSucces + 1

outputPrinter (message="\t\t%s features delete from %s" % (featSucces,layerName) )
outputPrinter (message="\t\t%s features deleted from %s" % (featSucces,layerName) )
else:
outputPrinter (message="\t\t0 features deleted from %s /n result info %s" % (layerName,str(results)))
else:
Expand Down

0 comments on commit 8efa02e

Please sign in to comment.